-
-
Notifications
You must be signed in to change notification settings - Fork 266
29 lines (28 loc) · 1.05 KB
/
stale.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
name: 'Mark stale issues and PRs'
on:
push: ''
schedule:
- cron: '7 8 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
# Number of days of inactivity before an issue becomes stale
days-before-stale: 60
# Number of days of inactivity before a stale issue is closed
days-before-close: -1
# Issues with these labels will never be considered stale
exempt-issue-labels: 'pinned,long-term,fixed in dev'
exempt-pr-labels: 'pinned,long-term,fixed in dev'
# Label to use when marking an issue as stale
stale-issue-label: stale
# Comment to post when marking an issue as stale. Set to `false` to disable
stale-issue-message: >
This issue has been automatically marked as stale because it has not had
recent activity.
stale-pr-message: >
This PR has been automatically marked as stale because it has not had
recent activity.
debug-only: true