Standard Autocloser #768
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: Standard Autocloser | |
on: | |
schedule: | |
- cron: "30 1 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write # for actions/stale to close stale issues | |
pull-requests: write # for actions/stale to close stale PRs | |
steps: | |
- uses: actions/stale@v6 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-issue-stale: 30 | |
days-before-issue-close: 7 | |
days-before-pr-stale: 45 | |
days-before-pr-close: 7 | |
stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Remove stale label or comment. Otherwise, this will be closed in 7 days." | |
stale-pr-message: "This PR is stale because it has been open 45 days with no activity. Remove stale label or comment. Otherwise, this will be closed in 7 days." | |
close-issue-message: "This issue was closed because it has been stalled for 30+7 days with no activity." | |
close-pr-message: "This PR was closed because it has been stalled for 45+7 days with no activity." | |
stale-issue-label: "stale" | |
stale-pr-label: "stale" | |
close-issue-label: "s: closed" | |
close-pr-label: "s: closed" | |
exempt-issue-labels: "bug,security,s: accepted,s: blocked,s: hold" | |
exempt-pr-labels: "bug,security,s: accepted,s: blocked,s: hold" | |
exempt-all-milestones: true |