We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5b3296 commit 1288fafCopy full SHA for 1288faf
1 file changed
.github/workflows/invite.yml
@@ -2,10 +2,21 @@ name: Automate Invitation
2
3
on:
4
issues:
5
- types: [labeled]
+ types: [opened]
6
7
jobs:
8
+ auto_label_issue:
9
+ runs-on: ubuntu-latest
10
+
11
+ steps:
12
+ - name: Label Issue as 'invite me to the community'
13
+ uses: actions-ecosystem/action-add-labels@v1
14
+ with:
15
+ github_token: ${{ secrets.INVITE_TOKEN }}
16
+ labels: 'invite me to the community'
17
18
handle_label:
19
+ needs: auto_label_issue
20
runs-on: ubuntu-latest
21
22
steps:
0 commit comments