forked from netbox-community/devicetype-library
-
Notifications
You must be signed in to change notification settings - Fork 0
26 lines (26 loc) · 809 Bytes
/
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
---
# https://github.com/actions/stale
name: Close stale PRs
on:
schedule:
- cron: '0 4 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v8
with:
close-pr-message: >
This PR has been automatically closed due to lack of activity. Please reopen if you would like to to re-review it.
days-before-stale: 30
days-before-close: 7
operations-per-run: 100
remove-stale-when-updated: false
stale-pr-label: stale
stale-pr-message: >
This PR has been automatically marked as stale because it has not
had recent activity. It will be closed automatically if no further
progress is made.