1
+ name : ' triage'
2
+ on :
3
+ schedule :
4
+ - cron : ' 42 0 * * *'
5
+
6
+ workflow_dispatch :
7
+ # Manual triggering through the GitHub UI, API, or CLI
8
+ inputs :
9
+ daysBeforeClose :
10
+ description : " Days before closing stale or need info issues"
11
+ required : true
12
+ default : " 30"
13
+ daysBeforeStale :
14
+ description : " Days before labeling stale"
15
+ required : true
16
+ default : " 180"
17
+ daysSinceClose :
18
+ description : " Days since close to lock"
19
+ required : true
20
+ default : " 30"
21
+ daysSinceUpdate :
22
+ description : " Days since update to lock"
23
+ required : true
24
+ default : " 30"
25
+
26
+ permissions :
27
+ actions : write # For managing the operation state cache
28
+ issues : write
29
+ contents : read
30
+
31
+ jobs :
32
+ stale :
33
+ # Do not run on forks
34
+ if : github.repository_owner == 'devlooped'
35
+ runs-on : ubuntu-latest
36
+ steps :
37
+ - name : ⌛ rate
38
+ shell : pwsh
39
+ if : github.event_name != 'workflow_dispatch'
40
+ env :
41
+ GH_TOKEN : ${{ secrets.DEVLOOPED_TOKEN }}
42
+ run : |
43
+ # add random sleep since we run on fixed schedule
44
+ $wait = get-random -max 180
45
+ echo "Waiting random $wait seconds to start"
46
+ sleep $wait
47
+ # get currently authenticated user rate limit info
48
+ $rate = gh api rate_limit | convertfrom-json | select -expandproperty rate
49
+ # if we don't have at least 100 requests left, wait until reset
50
+ if ($rate.remaining -lt 100) {
51
+ $wait = ($rate.reset - (Get-Date (Get-Date).ToUniversalTime() -UFormat %s))
52
+ echo "Rate limit remaining is $($rate.remaining), waiting for $($wait / 1000) seconds to reset"
53
+ sleep $wait
54
+ $rate = gh api rate_limit | convertfrom-json | select -expandproperty rate
55
+ echo "Rate limit has reset to $($rate.remaining) requests"
56
+ }
57
+
58
+ - name : ✏️ stale labeler
59
+ # pending merge: https://github.com/actions/stale/pull/1176
60
+ uses : kzu/stale@c8450312ba97b204bf37545cb249742144d6ca69
61
+ with :
62
+ ascending : true # Process the oldest issues first
63
+ stale-issue-label : ' stale'
64
+ stale-issue-message : |
65
+ Due to lack of recent activity, this issue has been labeled as 'stale'.
66
+ It will be closed if no further activity occurs within ${{ fromJson(inputs.daysBeforeClose || 30 ) }} more days.
67
+ Any new comment will remove the label.
68
+ close-issue-message : |
69
+ This issue will now be closed since it has been labeled 'stale' without activity for ${{ fromJson(inputs.daysBeforeClose || 30 ) }} days.
70
+ days-before-stale : ${{ fromJson(inputs.daysBeforeStale || 180) }}
71
+ days-before-close : ${{ fromJson(inputs.daysBeforeClose || 30 ) }}
72
+ days-before-pr-close : -1 # Do not close PRs labeled as 'stale'
73
+ exempt-all-milestones : true
74
+ exempt-all-assignees : true
75
+ exempt-issue-labels : priority,sponsor,backed
76
+ exempt-authors : kzu
77
+
78
+ - name : 🤘 checkout actions
79
+ uses : actions/checkout@v4
80
+ with :
81
+ repository : ' microsoft/vscode-github-triage-actions'
82
+ ref : v42
83
+
84
+ - name : ⚙ install actions
85
+ run : npm install --production
86
+
87
+ - name : 🔒 issues locker
88
+ uses : ./locker
89
+ with :
90
+ token : ${{ secrets.DEVLOOPED_TOKEN }}
91
+ ignoredLabel : priority
92
+ daysSinceClose : ${{ fromJson(inputs.daysSinceClose || 30) }}
93
+ daysSinceUpdate : ${{ fromJson(inputs.daysSinceUpdate || 30) }}
94
+
95
+ - name : 🔒 need info closer
96
+ uses : ./needs-more-info-closer
97
+ with :
98
+ token : ${{ secrets.DEVLOOPED_TOKEN }}
99
+ label : ' need info'
100
+ closeDays : ${{ fromJson(inputs.daysBeforeClose || 30) }}
101
+ closeComment : " This issue has been closed automatically because it needs more information and has not had recent activity.\n\n Happy Coding!"
102
+ pingDays : 80
103
+ pingComment : " Hey @${assignee}, this issue might need further attention.\n\n @${author}, you can help us out by closing this issue if the problem no longer exists, or adding more information."
0 commit comments