[skip ci] [](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/stale](https://togithub.com/actions/stale) | action | major | `v7` -> `v8` | --- ### Release Notes <details> <summary>actions/stale</summary> ### [`v8`](https://togithub.com/actions/stale/compare/v7...v8) [Compare Source](https://togithub.com/actions/stale/compare/v7...v8) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/sous-chefs/postfix). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xNy4xIiwidXBkYXRlZEluVmVyIjoiMzUuMTcuMSJ9-->
26 lines
961 B
YAML
26 lines
961 B
YAML
---
|
|
name: Mark stale issues and pull requests
|
|
|
|
"on":
|
|
schedule: [cron: "0 0 * * *"]
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v8
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
close-issue-message: >
|
|
Closing due to inactivity.
|
|
If this is still an issue please reopen or open another issue.
|
|
Alternatively drop by the #sous-chefs channel on the [Chef Community Slack](http://community-slack.chef.io/) and we'll be happy to help!
|
|
Thanks, Sous-Chefs.
|
|
days-before-close: 7
|
|
days-before-stale: 365
|
|
stale-issue-message: >
|
|
Marking stale due to inactivity.
|
|
Remove stale label or comment or this will be closed in 7 days.
|
|
Alternatively drop by the #sous-chefs channel on the [Chef Community Slack](http://community-slack.chef.io/) and we'll be happy to help!
|
|
Thanks, Sous-Chefs.
|