Skip to content

Commit daab47b

Browse files
dependabot[bot]mergify[bot]
authored andcommitted
Bump actions/stale from 9 to 10 (#397)
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](actions/stale@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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> (cherry picked from commit bfad53a) # Conflicts: # .github/workflows/stale.yml
1 parent b526a38 commit daab47b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/stale.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: 'Stale issues and PRs'
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: '0 12 * * MON-FRI'
6+
7+
jobs:
8+
stale:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
issues: write
12+
pull-requests: write
13+
steps:
14+
- uses: actions/stale@v10
15+
with:
16+
stale-issue-label: 'stale'
17+
stale-pr-label: 'stale'
18+
stale-issue-message: 'This issue is being labeled as stale because it has been open 45 days with no activity. It will be automatically closed after another 45 days without follow-ups.'
19+
close-issue-message: 'This issue was closed because it has been stalled for 45 days with no activity.'
20+
stale-pr-message: 'This PR is stale because it has been open for 45 days with no activity. Please tag a maintainer for help on completing this PR, or close it if you think it has become obsolete.'
21+
days-before-stale: 45
22+
days-before-close: 45
23+
days-before-pr-close: -1
24+
exempt-all-milestones: true
25+
exempt-issue-labels: good first issue,good second issue,persistent,release,roadmap,Epic
26+
operations-per-run: 100

0 commit comments

Comments
 (0)