-
Notifications
You must be signed in to change notification settings - Fork 285
55 lines (48 loc) · 1.8 KB
/
close-stale-issues.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
55
name: Close stale issues/prs
on:
workflow_dispatch:
schedule:
# Run every day at 1:00 AM UTC.
- cron: 0 1 * * *
# yamllint disable rule:empty-lines
env:
CLOSE_MESSAGE: >
It seems there has been no activity on this issue for a while,
and it is being closed. If you believe this issue should
remain open, please leave a comment.
If you need further assistance or have questions, you can
also search for similar issues on [Stack Overflow](https://stackoverflow.com/).
Make sure to look at the README file for the most updated links.
WARN_MESSAGE: >
It seems there has been no activity on this issue for a while,
and it is being closed **in 30 days**. If you believe this issue should
remain open, please leave a comment.
If you need further assistance or have questions, you can
also search for similar issues on [Stack Overflow](https://stackoverflow.com/).
Make sure to look at the README file for the most updated links.
# yamllint enable
permissions:
contents: read
issues: write
pull-requests: write
actions: write
jobs:
stale:
if: github.repository == 'nodejs/help'
runs-on: ubuntu-latest
steps:
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e #v9.0.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 180
days-before-close: 30
stale-issue-message: ${{ env.WARN_MESSAGE }}
stale-pr-message: ${{ env.WARN_MESSAGE }}
close-issue-message: ${{ env.CLOSE_MESSAGE }}
close-pr-message: ${{ env.CLOSE_MESSAGE }}
exempt-issue-labels: never-stale
exempt-pr-labels: never-stale
stale-pr-label: stale
stale-issue-label: stale
operations-per-run: 500
remove-stale-when-updated: true