Please invite me to the Recode-Hive GitHub Community Organization #100
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Automate Invitation | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
handle_label: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check if Label is 'invite me to the community' | |
id: check_label | |
run: | | |
if [[ "${{ github.event.label.name }}" != "invite me to the community" ]]; then | |
echo "Label is not 'invite me to the community'. Exiting." | |
exit 0 | |
fi | |
- name: Close Original Issue in Support Repository | |
if: ${{ steps.check_label.outcome == 'success' }} | |
uses: actions/github-script@v5 | |
with: | |
github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
script: | | |
const issue = context.payload.issue; | |
await github.rest.issues.update({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: issue.number, | |
state: 'closed' | |
}); | |
- name: Invite on Label | |
if: ${{ steps.check_label.outcome == 'success' }} | |
uses: vj-abigo/invite-on-label@v1.2 | |
with: | |
organization: recodehive | |
label: invite me to the community | |
repo-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
comment: | | |
<b>Invitation sent to join the GitHub Organisation. Welcome to the community 🎉</b><br><br> | |
Don't forget after accepting to make it public so it appears on your GitHub profile for everyone else to see. You can do this by finding your name in the GitHub organisation list and change the dropdown to public https://github.com/orgs/recodehive/people<br><br> | |
env: | |
INVITE_TOKEN: ${{ secrets.INVITE_TOKEN }} |