-
Notifications
You must be signed in to change notification settings - Fork 935
58 lines (46 loc) · 2.14 KB
/
stale.yml
File metadata and controls
58 lines (46 loc) · 2.14 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: 'Stale Issue and PR Cleanup'
on:
workflow_dispatch:
schedule:
- cron: '0 4 * * *'
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
# Action GitHub repository: https://github.com/actions/stale
- uses: actions/stale@v9
id: stale
with:
days-before-stale: 14
days-before-close: 14
exempt-all-assignees: false
exempt-draft-pr: true
stale-issue-label: "Pending Closure"
stale-pr-label: "Pending Closure"
only-labels: "0 - Waiting on User"
close-issue-label: "No Response / Stale"
close-issue-reason: "not_planned"
close-pr-label: "No Response / Stale"
exempt-issue-labels: "Security,2 - Working,3 - Review"
exempt-pr-labels: "Security,2 - Working,3 - Review"
labels-to-remove-when-unstale: "0 - Waiting on User,Pending closure"
remove-stale-when-updated: true
stale-issue-message: |
Is this still relevant? If so, what is blocking it? Is there anything you can do to help move it forward?
This issue will be closed in 14 days if it continues to be inactive.
close-issue-message: |
As this issue has been inactive for some time, it has been automatically closed.
If you feel this is a valid issue, please feel free to re-open the issue if / when a pull request
has been added.
Thank you for your contribution.
stale-pr-message: |
Is this still relevant? If so, what is blocking it? Is there anything you can do to help move it forward?
This pull request will be closed in 14 days if it continues to be inactive.
close-pr-message: |
As this pull request has been inactive for some time it has been automatically closed.
If you feel the changes are still valid, please re-open the pull request once the changes and / or the additional information
requested, has been added.
Thank you for your contribution.