-
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.
Disable workflow
- Loading branch information
Showing
1 changed file
with
0 additions
and
23 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 |
---|---|---|
@@ -1,24 +1 @@ | ||
name: 'Close stale issues and PRs' | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 */12 * * *" | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
stale-issue-message: 'This issue has been automatically marked as stale because it is has a state of "Awaiting Reply" but no reply has been received within 7 days. It will be closed within 3 days if it is not updated with a reply.' | ||
close-issue-message: 'This issue has been automatically closed because due to lack of response.' | ||
days-before-stale: 7 | ||
days-before-close: 3 | ||
days-before-pr-close: -1 | ||
stale-issue-label: 'Stale :skull:' | ||
only-issue-labels: 'Awaiting Reply :hourglass:' | ||
operations-per-run: 100 |