-
Notifications
You must be signed in to change notification settings - Fork 818
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI] Stale PRs and issues workflow (#2193)
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: 'Close Stale PRs and Issues' | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
stale: | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0 | ||
with: | ||
stale-issue-message: 'This issue will be closed in a week because of 9 months of no activity.' | ||
stale-pr-message: 'This PR will be closed in a week because of 2 weeks of no activity.' | ||
close-issue-message: 'This issue was closed because it has been stalled for 9 months with no activity.' | ||
close-pr-message: 'This PR was closed because it has been stalled for 2 week with no activity.' | ||
days-before-pr-stale: 14 | ||
days-before-issue-stale: 274 | ||
days-before-issue-close: -1 | ||
days-before-close: 7 | ||
ascending: true | ||
exempt-pr-labels: 'no_stale' | ||
exempt-draft-pr: true |