.github/workflows/stale.yaml #291
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
on: | |
schedule: | |
- cron: "42 3 * * *" | |
# see https://docs.github.com/en/actions/managing-issues-and-pull-requests/closing-inactive-issues | |
jobs: | |
stale-issues: | |
name: Close inactive issues and PRs | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0 | |
with: | |
days-before-issue-stale: 365 | |
days-before-issue-close: 7 | |
stale-issue-label: "stale" | |
stale-issue-message: "This issue is stale because it has been open for over a year with no activity. Remove stale label or add a comment to avoid this being closed in a weeks time." | |
close-issue-message: "This issue was closed because it has been inactive for a week since being marked as stale." | |
days-before-pr-stale: 60 | |
days-before-pr-close: 7 | |
stale-pr-label: "stale" | |
stale-pr-message: "This PR is stale because it has been open for two months with no activity. Remove stale label or add a comment to avoid this being closed in a weeks time." | |
close-pr-message: "This PR was closed because it has been inactive for a week since being marked as stale." | |
ascending: true |