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 40e5c04 commit 3efa591Copy full SHA for 3efa591
.github/workflows/indicate_interest_label.yml
@@ -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