generated from hashicorp/terraform-provider-scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 50
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
a67430d
commit 25f43f0
Showing
1 changed file
with
18 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,18 @@ | ||
name: "Close stale PRs" | ||
on: | ||
schedule: | ||
- cron: "0 0 * * *" # end of every day | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0 | ||
with: | ||
ascending: true | ||
operations-per-run: 100 | ||
days-before-stale: 15 | ||
days-before-close: 7 | ||
stale-pr-message: "This PR is more than 2 weeks old. Please remove the | ||
stale label, update, or comment if this PR is still valid and | ||
relevant, otherwise it will be closed in 7 days." |