Files
netbox-repo/.github/workflows/stale.yml
Daniel Anner 6ffc75c2cb Update stale.yml
Removing dependancy review I added, will chat with others if this is needed
2022-12-27 14:32:29 -05:00

25 lines
775 B
YAML

---
# close-stale-issues (https://github.com/marketplace/actions/close-stale-issues)
name: Close stale PRs
on: # yamllint disable-line rule:truthy
schedule:
- cron: 0 4 * * *
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v5
with:
close-pr-message: >
This PR has been automatically closed due to lack of activity.
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.