-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add stale PR GH workflow and free up large packages to provide more disk space to CI
- Loading branch information
Showing
2 changed files
with
28 additions
and
1 deletion.
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,27 @@ | ||
name: "Mark stale pull requests" | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
workflow_dispatch: | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
stale-pr-message: > | ||
This pull request has been automatically marked as stale because it has not had recent activity. | ||
It will be closed if no further activity occurs. To override this behavior, add the keep-open | ||
label or update the PR. | ||
days-before-issue-stale: -1 | ||
days-before-issue-close: -1 | ||
days-before-pr-stale: 90 | ||
days-before-pr-close: 14 | ||
stale-pr-label: "stale" | ||
exempt-pr-labels: "keep-open" |
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