-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into sync_readme
- Loading branch information
Showing
1 changed file
with
32 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,32 @@ | ||
name: Close stale issues | ||
|
||
on: | ||
schedule: | ||
- cron: "30 0 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- name: 30 days stale issues | ||
uses: actions/stale@v9 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
days-before-stale: 30 | ||
days-before-close: 7 | ||
stale-issue-message: > | ||
This issue has been automatically marked as stale because it has had no recent activity. | ||
It will be closed if no further activity occurs. Thank you for your contributions. | ||
close-issue-message: > | ||
This issue has been automatically closed because it has had no recent activity after being marked as stale. | ||
Please reopen if you need further assistance. | ||
stale-issue-label: "Stale" | ||
remove-stale-when-updated: true | ||
only-issue-labels: "more-info-needed" | ||
days-before-pr-stale: -1 # Prevents PRs from being marked as stale | ||
days-before-pr-close: -1 # Prevents PRs from being closed | ||
start-date: '2024-07-06T00:00:00Z' # ISO 8601 Format |