-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Showing
1 changed file
with
25 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,25 @@ | ||
name: Stale | ||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
workflow_dispatch: | ||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- name: Stale | ||
uses: actions/stale@v9 | ||
with: | ||
days-before-stale: 60 | ||
stale-issue-message: | | ||
This issue has been marked as stale because it has been inactive for over 60 days. | ||
If this is still relevant, please leave a comment to let us know. | ||
Otherwise, this issue may be closed automatically in 7 days. | ||
close-issue-message: | | ||
This issue has been automatically closed due to inactivity for over 60 days. | ||
If you believe this issue is still relevant, feel free to reopen it or create a new one with updated information. | ||
stale-issue-label: inactive | ||
only-labels: bug | ||
debug-only: true |