Skip to content

Commit ec1a3d4

Browse files
authored
Merge pull request #195 from thevijayshankersharma/label-workflow
Added tags workflow flow for issues
2 parents 415da22 + 66b0cad commit ec1a3d4

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/issues-tags.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)