mirror of
https://github.com/vcmi/vcmi.git
synced 2026-06-19 22:57:37 +02:00
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>
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
name: Close stale PRs
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 12 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v10
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# Only PRs, not issues
|
|
days-before-issue-stale: -1
|
|
days-before-issue-close: -1
|
|
days-before-pr-stale: 60
|
|
days-before-pr-close: 60
|
|
|
|
stale-pr-label: stale
|
|
stale-pr-message: >
|
|
This PR has had no activity for 60 days and has been marked as stale.
|
|
If this PR is complete but needs review or merge, please contact VCMI Team either via comment here or via Discord.
|
|
If this PR is still relevant but on hold, please add label 'postponed'
|
|
This pull request will be closed in 60 days more if there is no further activity.
|
|
close-pr-message: >
|
|
This PR has been closed due to inactivity.
|
|
Feel free to reopen it if you'd like to continue working on it.
|
|
|
|
exempt-pr-labels: postponed
|
|
|
|
# only process 1 PR per run (with 1 run / day via cron)
|
|
operations-per-run: 1
|