-
-
Notifications
You must be signed in to change notification settings - Fork 70
46 lines (36 loc) · 1.38 KB
/
stale-issue-bot.yaml
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
# Close and warn on tickets that have become stale
name: "Close stale tickets"
on:
schedule:
- cron: '0 3 * * *'
jobs:
# Check for stale issues (no updates in 2 months)
stale:
if: github.repository == 'KevinOConnor/can2040'
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
stale-issue-message: |
Hello,
It looks like there hasn't been any recent updates on this
github ticket. We prefer to only list tickets as "open" if
they are actively being worked on. Feel free to provide an
update on this ticket. Otherwise the ticket will be
automatically closed in a few days.
Best regards,
~ Your friendly GitIssueBot
PS: I'm just an automated script, not a human being.
stale-pr-message: |
Hello,
It looks like there hasn't been any recent updates on this
github ticket. We prefer to only list tickets as "open" if
they are actively being worked on. Feel free to provide an
update on this ticket. Otherwise the ticket will be
automatically closed in a few days.
Best regards,
~ Your friendly GitIssueBot
PS: I'm just an automated script, not a human being.
exempt-issue-labels: 'enhancement,bug'
days-before-stale: 60
days-before-close: 7