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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Harry <Harry@cadby.co.uk>
27 lines
808 B
YAML
27 lines
808 B
YAML
---
|
|
# 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@v10
|
|
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.
|