Stale Issues #772
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: Stale Issues | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
only-labels: 'Info Needed' | |
stale-issue-message: 'This issue has been marked stale because it has been waiting for more information for 4 weeks.' | |
close-issue-message: 'This issue has been closed because the requested information has not been provided.' | |
days-before-stale: 28 | |
days-before-close: 7 |