Daily Maintenance #4
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: "Daily Maintenance" | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
close-issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v5 | |
with: | |
days-before-issue-stale: 21 | |
days-before-issue-close: 7 | |
stale-issue-label: "stale" | |
stale-issue-message: "This issue has been marked that it requires additional information or answers to open questions to be able to get resolved. However, there hasn't been any response within the last 3 weeks.\n If this issue still resists, please provide the requested information. This issue will be automatically closed in one week if there is no response." | |
#close-issue-message: "This issue was closed because it has been inactive another week since being marked as stale." | |
days-before-pr-stale: -1 | |
days-before-pr-close: -1 | |
remove-stale-when-updated: true | |
any-of-labels: "waiting for user response" | |
labels-to-remove-when-unstale: "waiting for user response,stale" | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |