forked from bazel-contrib/rules_nodejs
-
Notifications
You must be signed in to change notification settings - Fork 4
54 lines (43 loc) · 1.97 KB
/
stale.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
44
45
46
47
48
49
50
51
52
53
54
# See https://github.com/marketplace/actions/close-stale-issues
name: Mark stale issues and pull requests
on:
schedule:
# run at 01:30 UTC daily
- cron: "30 1 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
# The number of days old an issue can be before marking it stale.
days-before-stale: 90
# Number of days of inactivity before a stale issue is closed
days-before-close: 14
# If an issue/PR is assigned, trust the assignee to stay involved
# Can revisit if these get stale
exempt-all-assignees: true
# Issues with these labels will never be considered stale
exempt-issue-labels: "need: discussion,cleanup"
# Label to use when marking an issue as stale
stale-issue-label: 'Can Close?'
stale-pr-label: 'Can Close?'
stale-issue-message: >
This issue has been automatically marked as stale because it has not had
any activity for 90 days.
It will be closed if no further activity occurs in two weeks.
Collaborators can add a "cleanup" or "need: discussion" label to keep it open indefinitely.
Thanks for your contributions to rules_nodejs!
stale-pr-message: >
This Pull Request has been automatically marked as stale because it has not had
any activity for 90 days.
It will be closed if no further activity occurs in two weeks.
Collaborators can add a "cleanup" or "need: discussion" label to keep it open indefinitely.
Thanks for your contributions to rules_nodejs!
close-issue-message: >
This issue was automatically closed because it went two weeks without a reply
since it was labeled "Can Close?"
close-pr-message: >
This PR was automatically closed because it went two weeks without a reply
since it was labeled "Can Close?"