forked from aristanetworks/avd
-
Notifications
You must be signed in to change notification settings - Fork 2
31 lines (29 loc) · 1.28 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
29
30
31
name: "Issue and PR stale management"
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
# Issue stale management
- uses: actions/stale@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 90
days-before-close: 15
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 15 days'
stale-issue-label: 'state: stale'
exempt-issue-labels: 'state: accepted, state: in-progress'
stale-pr-message: 'This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 15 days'
stale-pr-label: 'state: stale'
exempt-pr-labels: 'state: accepted, state: in-progress'
# # PR Stale Management
# - uses: actions/stale@v4
# with:
# repo-token: ${{ secrets.GITHUB_TOKEN }}
# days-before-stale: 30
# days-before-close: 15
# stale-pr-message: 'This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 15 days'
# stale-pr-label: 'state: stale'
# exempt-pr-labels: 'state: accepted, state: in-progress'