diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/invitation.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/invitation.yml b/.github/workflows/invitation.yml new file mode 100644 index 0000000..135aec2 --- /dev/null +++ b/.github/workflows/invitation.yml @@ -0,0 +1,18 @@ +on: + issues: + types: [labeled] + +jobs: + automate_invite: + permissions: write-all + runs-on: ubuntu-latest + steps: + - name: Invite on label + uses: vj-abigo/invite-on-label@v1.4 + with: + organization: HydroRoll-Team + label: invitation + repo-token: ${{ secrets.GITHUB_TOKEN }} + comment: '<b>邀请函发送成功~ 欢迎来到水系社区! 🎉</b><br><br>不要忘记在人员列表内将组织可见性改成“公开”("Public"),这样可以让所有人都看到。 你可以在[这里](https://github.com/orgs/HydroRoll-Team/people)找到自己并且更改组织可见性。<br>希望这些可以帮助你!<br><br>2023年6月30日 by 简律纯。' + env: + INVITE_TOKEN: ${{ secrets.INVITE_TOKEN }} |
