Skip to content

Commit 27ffede

Browse files
authored
Add a GitHub Action to manage status: awaiting user response (#430)
The idea is that any new comment on an issue with this label would get the label automatically removed.
1 parent d827785 commit 27ffede

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/user-input.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Manage awaiting user response
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
7+
jobs:
8+
remove_label:
9+
runs-on: ubuntu-latest
10+
if: "contains(github.event.issue.labels.*.name, 'status: awaiting user response')"
11+
steps:
12+
- uses: actions-ecosystem/action-remove-labels@v1
13+
with:
14+
labels: "status: awaiting user response"

0 commit comments

Comments
 (0)