-
Notifications
You must be signed in to change notification settings - Fork 70
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
789f371
commit 4abf9c8
Showing
1 changed file
with
22 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,22 @@ | ||
name: "Close stale pull requests" | ||
on: | ||
schedule: | ||
- cron: "0 3 * * *" | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
stale: | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
stale-pr-message: 'This PR was marked stale due to lack of activity. It will be closed in 14 days.' | ||
close-pr-message: 'Closed as inactive. Feel free to reopen if this PR is still being worked on.' | ||
stale-issue-message: 'This issue was marked stale due to lack of activity. It will be closed in 14 days.' | ||
close-issue-message: 'Closed as inacive. Feel free to reopen if this issue is still relevant.' | ||
days-before-close: 14 |