60 Days Stale Check #142
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: 60 Days Stale Check | |
on: | |
schedule: | |
- cron: "0 0 * * 0" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v7 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: "This issue is stale because it has been open 60 days with no activity.<br> | |
`Stale` issues will automatically be closed 30 days after being marked `Stale` <br>." | |
stale-pr-message: "This PR is stale because it has been open 60 days with no activity. <br> | |
`Stale` pull requests will automatically be closed 30 days after being marked `Stale` <br>." | |
days-before-stale: 60 # 60 days before marking anything stale | |
days-before-close: 90 | |
stale-issue-label: "stale" | |
stale-pr-label: "stale" | |
exempt-pr-labels: "never-stale" # Exempt "never-stale" labels from being marked stale | |
exempt-issue-labels: "never-stale" # Exempt "never-stale" labels from being marked stale |