mirror of
https://github.com/primer/css.git
synced 2024-11-30 11:17:05 +03:00
d44182a2f3
Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
28 lines
1.0 KiB
YAML
28 lines
1.0 KiB
YAML
name: Stale
|
|
on:
|
|
schedule:
|
|
- cron: '0 * * * *'
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v4
|
|
with:
|
|
|
|
# General settings
|
|
days-before-stale: 60
|
|
days-before-close: 7
|
|
enable-statistics: true
|
|
operations-per-run: 100
|
|
remove-stale-when-updated: true
|
|
|
|
# PR specific settings
|
|
delete-branch: true
|
|
stale-pr-message: "Hi! This pull request has been marked as stale because it has been open with no activity for 60 days. You can comment on the pull request or remove the stale label to keep it open. If you do nothing, this pull request will be closed in 7 days."
|
|
|
|
# Issue specific settings
|
|
days-before-issue-stale: 180
|
|
stale-issue-message: "Hi! This issue has been marked as stale because it has been open with no activity for 180 days. You can comment on the issue or remove the stale label to keep it open. If you do nothing, this issue will be closed in 7 days."
|
|
|