stale #3588
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
# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". | |
name: stale | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: 0 */4 * * * | |
jobs: | |
scan: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
contents: read | |
steps: | |
- uses: aws-actions/stale-issue-cleanup@v6 | |
with: | |
ancient-issue-message: This issue has not received any attention in 1 year and will be closed soon. If you want to keep it open, please leave a comment below @mentioning a maintainer. | |
stale-issue-message: This issue has not received a response in a while and will be closed soon. If you want to keep it open, please leave a comment below @mentioning a maintainer. | |
stale-pr-message: This PR has not received a response in a while and will be closed soon. If you want to keep it open, please leave a comment below @mentioning a maintainer. | |
stale-issue-label: closing-soon | |
exempt-issue-labels: no-autoclose | |
stale-pr-label: closing-soon | |
exempt-pr-labels: no-autoclose | |
response-requested-label: response-requested | |
closed-for-staleness-label: closed-for-staleness | |
days-before-stale: 30 | |
days-before-close: 7 | |
days-before-ancient: 365 | |
minimum-upvotes-to-exempt: 10 | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
loglevel: DEBUG | |
dry-run: false |