-
Notifications
You must be signed in to change notification settings - Fork 2
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
d86e0a9
commit ab921e5
Showing
1 changed file
with
35 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,35 @@ | ||
# Managed by https://github.com/powerhome/software. Do not make changes here, they will be reverted. | ||
|
||
name: 'Close stale issues and PRs' | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '47 19 * * *' | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9 | ||
with: | ||
operations-per-run: 200 | ||
delete-branch: true | ||
stale-pr-message: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed in 24 hours if no further activity occurs. | ||
If this change is desirable, please accelerate completing it. If it is not, | ||
please close the PR. If you're blocked on something, please ensure there's | ||
a reference to this PR in a story on your team's board so the team will | ||
follow up, and consider closing the PR for now. | ||
Please do not artificially extend the deadline with a dummy comment. If | ||
necessary, provide a status update, such as "this change is being actively | ||
tested". | ||
Thank you for your contributions and your collaboration in reducing WIP | ||
and cycle time. | ||
days-before-stale: 4 | ||
days-before-close: 1 | ||
days-before-issue-stale: -1 | ||
exempt-pr-labels: dependencies |