forked from nodejs/node-core-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
20 lines (19 loc) · 784 Bytes
/
stale.yml
File metadata and controls
20 lines (19 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: "Close stale issues and PRs"
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open many days with no activity. It will be closed soon unless the stale label is removed or a comment is made.'
stale-issue-label: 'stale'
exempt-issue-label: 'never stale'
stale-pr-message: 'This PR is stale because it has been open many days with no activity. It will be closed soon unless the stale label is removed or a comment is made.'
stale-pr-label: 'stale'
exempt-pr-label: 'never stale'
days-before-stale: 90
days-before-close: 14