mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-30 01:27:59 +00:00
Bumps [actions/stale](https://github.com/actions/stale) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
15 lines
433 B
YAML
15 lines
433 B
YAML
name: Close Stale PRs
|
|
on:
|
|
schedule:
|
|
- cron: '30 1 * * *'
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/stale@v6
|
|
with:
|
|
stale-pr-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
|
|
days-before-stale: 30
|
|
days-before-close: 5
|
|
only-labels: 'waiting-on-response'
|