[New] η³θ―· #790
This file contains hidden or 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: π€ Auto Invite | |
| on: | |
| issues: | |
| types: [labeled] | |
| jobs: | |
| auto-invite: | |
| runs-on: ubuntu-latest | |
| if: github.event.label.name == 'auto invited' | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: install | |
| run: yarn | |
| - name: node js | |
| run: node ./script/auto-invite.js | |
| env: | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| ISSUE_AUTH: ${{ github.event.issue.user.login }} | |
| ISSUE_NUMBER: ${{ github.event.issue.number }} |