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 1135287 commit 5faa007Copy full SHA for 5faa007
.github/workflows/auto-label.yml
@@ -0,0 +1,22 @@
1
+name: Auto-label Issues and Pull Requests
2
+
3
+on:
4
+ issues:
5
+ types: [opened]
6
+ pull_request:
7
8
9
+jobs:
10
+ add-labels:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Check out the repository
15
+ uses: actions/checkout@v2
16
17
+ - name: Add Labels to Issue or Pull Request
18
+ uses: actions-ecosystem/action-add-labels@v1
19
+ with:
20
+ github_token: ${{ secrets.GITHUB_TOKEN }}
21
+ labels: "gssoc-ext, hacktoberfest-accepted"
22
+ issue_number: ${{ github.event.issue.number || github.event.pull_request.number }}
0 commit comments