Bumps [actions/stale](https://github.com/actions/stale) from 8 to 9. - [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/v8...v9) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
29 lines
1.3 KiB
YAML
29 lines
1.3 KiB
YAML
name: "Close stale pull requests/issues"
|
|
on:
|
|
schedule:
|
|
- cron: "16 00 * * *"
|
|
|
|
jobs:
|
|
stale:
|
|
name: Find Stale issues and PRs
|
|
runs-on: ubuntu-22.04
|
|
if: github.repository == 'zephyrproject-rtos/zephyr'
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
stale-pr-message: 'This pull request has been marked as stale because it has been open (more
|
|
than) 60 days with no activity. Remove the stale label or add a comment saying that you
|
|
would like to have the label removed otherwise this pull request will automatically be
|
|
closed in 14 days. Note, that you can always re-open a closed pull request at any time.'
|
|
stale-issue-message: 'This issue has been marked as stale because it has been open (more
|
|
than) 60 days with no activity. Remove the stale label or add a comment saying that you
|
|
would like to have the label removed otherwise this issue will automatically be closed in
|
|
14 days. Note, that you can always re-open a closed issue at any time.'
|
|
days-before-stale: 60
|
|
days-before-close: 14
|
|
stale-issue-label: 'Stale'
|
|
stale-pr-label: 'Stale'
|
|
exempt-pr-labels: 'Blocked,In progress'
|
|
exempt-issue-labels: 'In progress,Enhancement,Feature,Feature Request,RFC,Meta,Process,Coverity'
|
|
operations-per-run: 400
|