-
Notifications
You must be signed in to change notification settings - Fork 1
28 lines (24 loc) · 1.11 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
name: Mark stale issues and pull requests
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v6
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
# TODO: Add a link to learn more about why it should be closed
stale-issue-message: |
This issue will be closed in 7 days as it has been open for 30 days with no activity.
To prevent the issue from being closed, either comment on this issue or remove the "status: stale" label.
stale-pr-message: |
This pull request will be closed in 7 days as it has been open for 30 days with no activity.
To prevent the pull request from being closed, either comment on this pull request or remove the "status: stale" label.
stale-issue-label: 'status: stale'
exempt-issue-labels: 'in progress,pinned,status: awaiting-approval,status:needs-triage'
stale-pr-label: 'status: stale'
exempt-pr-labels: 'in progress,pinned,status: awaiting-approval,status:needs-triage'
days-before-stale: 30
days-before-close: 7