Mark stale issues and pull requests #27
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 0 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v8 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'Issues go stale after 60d of inactivity. Please comment or re-open the issue if you are still interested in getting this issue fixed.' | |
stale-pr-message: 'PRs go stale after 60d of inactivity. Please comment or re-open the PR if you are still working on this PR.' | |
stale-issue-label: 'no-issue-activity' | |
stale-pr-label: 'no-pr-activity' | |
days-before-stale: 60 | |
exempt-issue-labels: 'ignore-no-issue-activity' |