-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (41 loc) · 1.26 KB
/
issue-manager.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
34
35
36
37
38
39
40
41
42
43
name: Issue Manager
on:
schedule:
- cron: "0 0 * * *"
issue_comment:
types:
- created
- edited
issues:
types:
- labeled
jobs:
issue-manager:
runs-on: ubuntu-latest
steps:
- uses: tiangolo/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
config: >
{
"answered": {
"delay": "P3DT12H30M5S",
"message": "It seems the issue was answered, closing this now."
},
"validated": {
"delay": 3000,
"message": "The issue could not be validated after 60 minutes. Closing now."
},
"waiting-1-day": {
"delay": 86400,
"message": "Closing after 1 day of waiting for the additional info requested."
},
"waiting-2-days": {
"delay": 172800,
"message": "Closing after 2 days of waiting for the additional info requested."
},
"waiting-8-days": {
"delay": 691200,
"message": "Closing after 8 days of waiting for the additional info requested."
}
}