-
Notifications
You must be signed in to change notification settings - Fork 69
31 lines (27 loc) · 975 Bytes
/
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
---
# yamllint disable rule:line-length
name: Close stale issues/PRs
on: # yamllint disable-line rule:truthy
schedule:
- cron: "43 5 * * *" # Daily @ 05:43
permissions:
issues: write
pull-requests: write
jobs:
stale:
name: Close stale issues/PRs
runs-on: ubuntu-latest
steps:
- uses: actions/stale@1160a2240286f5da8ec72b1c0816ce2481aabf84 # v8.0.0
with:
days-before-issue-stale: -1
days-before-issue-close: -1
days-before-pr-stale: 60
days-before-pr-close: 30
stale-pr-message: >
This pull request has been automatically marked as stale because it
has not had recent activity. It will be closed in 30 days if no
further activity occurs. Thank you for your contributions.
close-pr-message: >
This pull request has been automatically closed due to inactivity.
Please re-open if these changes are still required.