Mark stale issues and pull requests #940
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: "30 1 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'This issue has been marked as stale due to the lack of response on it. If this problem is still occurring, please comment saying so or the issue will be closed in 7 days.' | |
stale-issue-label: 'Status: Stale' | |
exempt-issue-labels: 'Type: Addon Suggestion,Type: Enhancement,Type: Feature Request,Status: Reproduced,Type: Dependabot,Type: Developer Report,Type: Todo' | |
days-before-stale: 20 | |
days-before-close: 7 |