aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/automation_remove_question_label_on_comment.yml
blob: f99bba89fe363945a5eb96b1bdf73c9f8ad225c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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@v4
      - uses: actions-ecosystem/action-remove-labels@v1
        with:
          labels: question