We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 415da22 commit 66b0cadCopy full SHA for 66b0cad
.github/workflows/issues-tags.yml
@@ -0,0 +1,25 @@
1
+name: Auto Label Issues
2
+
3
+on:
4
+ issues:
5
+ types: [opened]
6
7
+permissions:
8
+ issues: write
9
10
+jobs:
11
+ label:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Check out the repository
16
+ uses: actions/checkout@v3
17
18
+ - name: Add Labels to Issues
19
+ if: github.event_name == 'issues'
20
+ uses: actions-ecosystem/[email protected]
21
+ with:
22
+ github_token: ${{ secrets.GITHUB_TOKEN }}
23
+ labels: |
24
+ gssoc
25
+ good new issue
0 commit comments