mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-02-05 11:33:15 +01: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>
21 lines
730 B
YAML
21 lines
730 B
YAML
name: Close inactive issues
|
|
on:
|
|
schedule:
|
|
- cron: "45 3 * * *" # 3:45 am UTC. Just a random time intentionally picked to be not during busy hours.
|
|
|
|
jobs:
|
|
close-issues:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/stale@v10
|
|
with:
|
|
any-of-labels: "Response Needed"
|
|
days-before-stale: 45
|
|
days-before-close: 7
|
|
stale-issue-message: "This issue is stale because it has been waiting for a response for 45 days with no activity."
|
|
stale-pr-message: "This pull request is stale because it has been waiting for a response for 45 days with no activity."
|
|
close-issue-reason: "not_planned"
|