this repo has no description

Add a Github Action that removes the "needs reporter action" label when the issue or PR has been commented on

Kate 1829f2d2 506d31a0

Changed files
+11
.github
workflows
+11
.github/workflows/unlabel.yml
···
···
+
name: Remove Label
+
on:
+
issue_comment:
+
types: [created]
+
jobs:
+
remove_label:
+
runs-on: ubuntu-latest
+
steps:
+
- uses: actions-ecosystem/action-remove-labels@v1
+
with:
+
labels: "needs reporter action"