2021-04-13 11:46:14 -04:00
|
|
|
# close-stale-issues (https://github.com/marketplace/actions/close-stale-issues)
|
|
|
|
name: 'Close stale issues/PRs'
|
2022-09-29 12:17:10 -04:00
|
|
|
|
2021-04-12 13:53:38 -04:00
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 4 * * *'
|
2022-09-29 12:36:10 -04:00
|
|
|
workflow_dispatch:
|
2021-04-12 13:53:38 -04:00
|
|
|
|
2022-09-29 12:17:10 -04:00
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
pull-requests: write
|
|
|
|
|
2021-04-12 13:53:38 -04:00
|
|
|
jobs:
|
|
|
|
stale:
|
2022-09-29 18:41:33 +03:00
|
|
|
|
2021-04-12 13:53:38 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-09-29 12:00:44 -04:00
|
|
|
- uses: actions/stale@v6
|
2021-04-12 13:53:38 -04:00
|
|
|
with:
|
|
|
|
close-issue-message: >
|
|
|
|
This issue has been automatically closed due to lack of activity. In an
|
|
|
|
effort to reduce noise, please do not comment any further. Note that the
|
|
|
|
core maintainers may elect to reopen this issue at a later date if deemed
|
|
|
|
necessary.
|
|
|
|
close-pr-message: >
|
|
|
|
This PR has been automatically closed due to lack of activity.
|
2021-05-05 09:46:54 -04:00
|
|
|
days-before-stale: 60
|
|
|
|
days-before-close: 30
|
2021-04-13 11:46:14 -04:00
|
|
|
exempt-issue-labels: 'status: accepted,status: blocked,status: needs milestone'
|
2021-05-03 11:18:04 -04:00
|
|
|
operations-per-run: 100
|
2021-04-12 13:53:38 -04:00
|
|
|
remove-stale-when-updated: false
|
|
|
|
stale-issue-label: 'pending closure'
|
|
|
|
stale-issue-message: >
|
|
|
|
This issue has been automatically marked as stale because it has not had
|
|
|
|
recent activity. It will be closed if no further activity occurs. NetBox
|
|
|
|
is governed by a small group of core maintainers which means not all opened
|
2022-06-07 09:59:59 -04:00
|
|
|
issues may receive direct feedback. **Do not** attempt to circumvent this
|
|
|
|
process by "bumping" the issue; doing so will result in its immediate closure
|
|
|
|
and you may be barred from participating in any future discussions. Please see
|
|
|
|
our [contributing guide](https://github.com/netbox-community/netbox/blob/develop/CONTRIBUTING.md).
|
2021-04-13 11:46:14 -04:00
|
|
|
stale-pr-label: 'pending closure'
|
2021-04-12 13:53:38 -04:00
|
|
|
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 action is
|
|
|
|
taken.
|