-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1b08b6b
commit 0e1e131
Showing
1 changed file
with
21 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,21 @@ | ||
name: 'Close stale issues and PRs' | ||
on: | ||
schedule: | ||
- cron: '0 0 8 ? * WED,SAT *' | ||
workflow_dispatch: # can be used to trigger the workflow manually | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
close-issue-message: 'Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open.' | ||
close-pr-message: 'Closing due to lack of requested feedback. If you would like us to look at this, please provide the requested information and we will re-open.' | ||
close-issue-label: 'group:closed-as-inactive' | ||
close-pr-label: 'group:closed-as-inactive' | ||
days-before-close: 1 | ||
only-labels: 'group:requested-info' | ||
exempt-issue-labels: 'group:info-provided' | ||
exempt-pr-labels: 'group:info-provided' | ||
# operations-per-run: 300 |