-
Notifications
You must be signed in to change notification settings - Fork 357
29 lines (27 loc) · 1005 Bytes
/
stale.yml
File metadata and controls
29 lines (27 loc) · 1005 Bytes
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: "Stale Issues"
on:
schedule:
- cron: "0 18 * * *" # approx 9:30am daily
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10.1.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
debug-only: false
days-before-stale: 30
days-before-close: 30
stale-issue-message:
"This issue is stale because it has been open for 30 days with no
activity. It will be closed in 30 days unless the stale label is
removed."
stale-pr-message:
"This pull request is stale because it has been open for 30 days
with no activity. It will be closed in 30 days unless the stale
label is removed."
stale-issue-label: stale
stale-pr-label: stale
exempt-issue-labels: "needs draft,needs pilot,accepted,blocked"
exempt-pr-labels: "needs draft,needs pilot,accepted,blocked"
remove-stale-when-updated: true