ci: github workflow automation
This commit is contained in:
parent
a1af7a1b59
commit
8bc37bac29
2 changed files with 43 additions and 0 deletions
16
.github/workflows/automation_remove_question_label_on_comment.yml
vendored
Normal file
16
.github/workflows/automation_remove_question_label_on_comment.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
name: Remove Question Label on Issue Comment
|
||||
|
||||
on: [issue_comment]
|
||||
|
||||
jobs:
|
||||
# Remove the "question" label when a new comment is added.
|
||||
# This lets me ask a question, tag the issue with "question", and filter out all "question"-tagged
|
||||
# issues in my "needs triage" filter.
|
||||
remove_question:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event.sender.login != 'stevearc'
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-ecosystem/action-remove-labels@v1
|
||||
with:
|
||||
labels: question
|
||||
Loading…
Add table
Add a link
Reference in a new issue