-
Notifications
You must be signed in to change notification settings - Fork 4
33 lines (32 loc) · 1.41 KB
/
stale.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# ~~ 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