super-productivity/.github/workflows/stale.yml
dependabot[bot] f692f2c2b0
build(deps): bump actions/stale from 9 to 10
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>
2025-10-01 13:01:37 +00:00

16 lines
522 B
YAML

name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10
with:
days-before-stale: 180
days-before-close: 14
stale-issue-message: 'This issue has not received any updates in 180 days. Please comment, if this still relevant!'
stale-pr-message: 'This PR has not received any updates in 180 days. Please comment, if this still relevant!'
days-before-pr-close: -1