-
Notifications
You must be signed in to change notification settings - Fork 17
27 lines (23 loc) · 1.03 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
name: "Close stale issues and PR"
on:
schedule:
- cron: "30 22 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@1160a2240286f5da8ec72b1c0816ce2481aabf84 # v8.0.0
with:
repo-token: ${{ secrets.DEFICHAIN_BOT_GITHUB_TOKEN }}
remove-stale-when-updated: true
exempt-milestones: true
exempt-assignees: true
days-before-issue-stale: 40
days-before-issue-close: 5
exempt-issue-labels: "triage/accepted,kind/feature,good first issue"
stale-issue-message: "This issue is stale because it has been open for 40 days without any activity. Please remove the stale label or this will be closed in 5 days."
stale-issue-label: "stale"
days-before-pr-stale: 90
days-before-pr-close: 14
stale-pr-message: "This pull request is stale because it has been open for 90 days without any activity. Please remove the stale label or this will be closed in 14 days."
stale-pr-label: "stale"