Bumps [actions/stale](https://github.com/actions/stale) from 10.0.0 to 10.1.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](3a9db7e6a4...5f858e3efb)
---
updated-dependencies:
- dependency-name: actions/stale
dependency-version: 10.1.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
31 lines
1.2 KiB
YAML
31 lines
1.2 KiB
YAML
name: "Close Stale Issues"
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 3"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
stale:
|
|
if: github.repository_owner == 'anddea'
|
|
permissions:
|
|
issues: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v9
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-issue-message: >
|
|
Hi there! 👋
|
|
<br><br>
|
|
This issue has been automatically marked as stale because it has been inactive for a while.
|
|
If this issue is still relevant and reproducible in the latest version of RVX patches, please add a comment letting us know.
|
|
We'll keep it open if we hear from you. If we don't hear back within 7 days, the issue will be automatically closed.
|
|
<br><br>
|
|
Thank you!
|
|
close-issue-message: "This issue has been automatically closed due to inactivity. If you're still experiencing this problem, please open a new issue and include a link to this one for reference."
|
|
days-before-stale: 120
|
|
days-before-close: 7
|
|
operations-per-run: 1000
|
|
ascending: true
|
|
enable-statistics: true
|
|
stale-issue-label: "Stale"
|