Mark stale issues and pull requests #1463
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: Mark stale issues and pull requests | |
on: | |
schedule: | |
- cron: "0 8 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'This issue has been marked stale automatically after no activity for the last 180 days.' | |
stale-pr-message: 'This pull request has been marked stale automatically after no activity for the last 180 days.' | |
stale-issue-label: 'no-issue-activity' | |
stale-pr-label: 'no-pr-activity' | |
close-issue-message: 'This Issue has been closed automatically after 187 days of no activity.' | |
close-pr-message: 'This PR has been closed automatically after 187 days of no activity.' | |
days-before-stale: 180 | |
days-before-close: 7 | |
close-issue-label: 'Stale Issue' | |
exempt-issue-labels: 'Never Stale' |