Skip to content

Commit 3efa591

Browse files
committed
add workflow to trigger comment when indicate interest label applied
1 parent 40e5c04 commit 3efa591

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Indicate interest label
2+
3+
on:
4+
issues:
5+
types: [labeled]
6+
7+
permissions:
8+
issues: write
9+
10+
jobs:
11+
comment-on-indicate-interest-label:
12+
runs-on: ubuntu-latest
13+
if: github.event.label.name == 'Indicate interest required'
14+
steps:
15+
- name: Comment after applying indicate interest label
16+
uses: peter-evans/create-or-update-comment@v3
17+
with:
18+
issue-number: ${{ github.event.issue.number }}
19+
body: |
20+
Thumbs up on the issue description if you would also like this feature request

0 commit comments

Comments
 (0)