├── .github ├── ISSUE_TEMPLATE │ └── invitation.yml └── workflows │ └── invitation.yml └── README.md /.github/ISSUE_TEMPLATE/invitation.yml: -------------------------------------------------------------------------------- 1 | name: Invitation to the GitHub Community Organization 2 | description: I would like to be part of the awesome community 3 | title: "Please invite me to the GitHub Community Organization" 4 | labels: [Invite me to the organization] 5 | body: 6 | - type: input 7 | id: name 8 | attributes: 9 | label: Name 10 | placeholder: Insert your name here 11 | validations: 12 | required: true 13 | - type: input 14 | id: discordname 15 | attributes: 16 | label: Discord Username (if applicable) 17 | placeholder: Insert your Discord username here 18 | validations: 19 | required: false 20 | - type: textarea 21 | id: Additional 22 | attributes: 23 | label: Additional Context 24 | description: Where did you know about it? 25 | validations: 26 | required: false 27 | - type: markdown 28 | attributes: 29 | value: | 30 | You can also join our Discord community [here](https://discord.gg/m5anDXXFr3) 31 | **You'll get an invitation as soon as you make the issue.** 32 | -------------------------------------------------------------------------------- /.github/workflows/invitation.yml: -------------------------------------------------------------------------------- 1 | on: 2 | issues: 3 | types: [labeled] 4 | 5 | jobs: 6 | automate_invite: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - name: Invite on label 10 | uses: vj-abigo/invite-on-label@v1.4 11 | with: 12 | organization: GrowInCommunity 13 | label: Invite me to the organization 14 | repo-token: ${{ secrets.GITHUB_TOKEN }} 15 | comment: 'Welcome to the Organization! Please check your e-mail & make your membership public after you join from here https://github.com/orgs/GrowInCommunity/people' 16 | env: 17 | INVITE_TOKEN: ${{ secrets.INVITE_TOKEN }} 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Create an issue to join! 2 | [Join our community](https://github.com/GrowInCommunity/support/issues/new?assignees=&labels=Invite+me+to+the+organization&projects=&template=invitation.yml&title=Please+invite+me+to+the+GitHub+Community+Organization) 3 | --------------------------------------------------------------------------------