We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e3ac6a commit f618f5cCopy full SHA for f618f5c
.github/workflows/stale.yml
@@ -33,7 +33,8 @@ jobs:
33
# trigger "stale" removal immediately when stale issues are commented on
34
# we need to explicitly check that the trigger does not run on comment on a PR as
35
# 'issue_comment' triggers on issues AND PR comments
36
- if: github.event_name == 'issue_comment' && ${{ !github.event.issue.pull_request }}
+ # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#issue_comment-on-issues-only-or-pull-requests-only
37
+ if: ${{ !github.event.issue.pull_request && github.event_name != 'schedule' }}
38
permissions:
39
contents: read # for actions/checkout
40
issues: write # to edit issues label
0 commit comments