Skip to content

Commit 7036f40

Browse files
committed
feat: label commenter workflow
Signed-off-by: Krish Gupta <krishguptadev@outlook.com>
1 parent b64616f commit 7036f40

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/label-commenter.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Label Commenter
2+
3+
on:
4+
issues:
5+
types:
6+
- labeled
7+
8+
pull_request_target:
9+
types:
10+
- labeled
11+
12+
permissions:
13+
contents: read
14+
issues: write
15+
pull-requests: write
16+
17+
jobs:
18+
comment:
19+
runs-on: ubuntu-18.04
20+
steps:
21+
- uses: actions/checkout@v2
22+
with:
23+
ref: master # Set your default branch
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
- name: Label Commenter
27+
uses: peaceiris/actions-label-commenter@v1

0 commit comments

Comments
 (0)