Mark stale issues and pull requests #1348
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 }} | |
days-before-close: -1 | |
exempt-issue-labels: good first issue,help wanted,on-deck | |
stale-issue-message: "This issue hasn't had any recent activity lately and is being marked as stale automatically." | |
stale-pr-message: "This PR hasn't had any recent activity lately and is being marked as stale automatically." | |
stale-issue-label: 'stale' | |
stale-pr-label: 'stale' |