stale #1069
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: | |
schedule: | |
- cron: 0 1 * * * | |
workflow_dispatch: {} | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v4 | |
with: | |
days-before-stale: -1 | |
days-before-close: -1 | |
days-before-pr-stale: 14 | |
days-before-pr-close: 2 | |
stale-pr-message: This pull request is now marked as stale because it hasn't | |
seen activity for a while. Add a comment or it will be closed soon. | |
close-pr-message: Closing this pull request as it hasn't seen activity for a | |
while. Please add a comment @mentioning a maintainer to reopen. | |
stale-pr-label: stale | |
days-before-issue-stale: 60 | |
days-before-issue-close: 7 | |
stale-issue-message: This issue is now marked as stale because it hasn't seen | |
activity for a while. Add a comment or it will be closed soon. | |
close-issue-message: Closing this issue as it hasn't seen activity for a while. | |
Please add a comment @mentioning a maintainer to reopen. | |
stale-issue-label: stale |