-
-
Notifications
You must be signed in to change notification settings - Fork 30
36 lines (36 loc) · 769 Bytes
/
close_threads.yml
File metadata and controls
36 lines (36 loc) · 769 Bytes
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
{
"name": "Close Threads",
"on": {
"schedule": [
{
"cron": "42 2 * * *"
}
],
"workflow_dispatch": null
},
"permissions": {
"issues": "write",
"pull-requests": "write"
},
"concurrency": {
"group": "lock"
},
"jobs": {
"close_unconfirmed_after_inactivity": {
"runs-on": "ubuntu-latest",
"steps": [
{
"uses": "actions/stale@v9",
"with": {
"stale-issue-label": "unconfirmed",
"ignore-updates": true,
"remove-stale-when-updated": false,
"days-before-stale": -1,
"days-before-close": 45,
"close-issue-message": "Closing after being unconfirmed for 45 Days."
}
}
]
}
}
}