Stale Issues #86
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: Stale Issues | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 11 * * *' | |
permissions: | |
# contents: write # only for delete-branch option | |
issues: write | |
pull-requests: write | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
operations-per-run: 100 | |
# set 'stale' label | |
stale-issue-label: stale | |
# remove 'stale' label on update | |
remove-issue-stale-when-updated: true | |
labels-to-remove-when-unstale: stale | |
# only stale the issues | |
stale-issue-message: > | |
This issue has been automatically marked as stale because it has not had | |
recent activity. After 30 days from now, it will be closed if no further | |
activity occurs. | |
close-issue-message: > | |
This issue was closed because it has been stalled for 30 days with no activity. | |
Thank you for your contributions | |
days-before-issue-stale: 90 | |
days-before-issue-close: 30 | |
# skip issues that have a milestone | |
exempt-all-issue-milestones: true | |
# skip those that are assigned | |
exempt-all-issue-assignees: true | |
# skip issues with label 'pinned' | |
exempt-issue-labels: pinned,security,failing test case,help wanted | |
# do not stale PRs | |
days-before-pr-stale: -1 | |
days-before-pr-close: -1 |