ffc734289e
Bumps [actions/stale](https://github.com/actions/stale) from 9 to 10. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v9...v10) --- updated-dependencies: - dependency-name: actions/stale dependency-version: '10' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
37 lines
1.2 KiB
YAML
37 lines
1.2 KiB
YAML
name: Close stale issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '17 5 * * *' # daily, off-peak
|
|
workflow_dispatch: {}
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v10
|
|
with:
|
|
days-before-stale: 14
|
|
days-before-close: 7
|
|
stale-issue-message: >
|
|
This issue has been inactive for 14 days while waiting on
|
|
additional information. It will close automatically in 7 days
|
|
unless someone responds. If you still need help, drop a
|
|
comment with the requested details and a maintainer can
|
|
reopen.
|
|
close-issue-message: >
|
|
Closing for inactivity. Feel free to comment to reopen if
|
|
you can share the requested information.
|
|
stale-issue-label: 'stale'
|
|
only-labels: 'needs-info'
|
|
exempt-issue-labels: 'pinned,keep-open,bug,security'
|
|
# Don't touch PRs — `actions/stale` defaults can be aggressive
|
|
# there. We only want it for `needs-info` issues.
|
|
days-before-pr-stale: -1
|
|
days-before-pr-close: -1
|
|
operations-per-run: 60
|