feature request: Extend preview.win_options to override win_options #729
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |