-
Notifications
You must be signed in to change notification settings - Fork 16
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
supernovahs
committed
Jun 12, 2024
1 parent
36c3996
commit 59bd910
Showing
1 changed file
with
29 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,29 @@ | ||
# Marks issues as stale. | ||
|
||
name: stale issues | ||
|
||
on: | ||
workflow_dispatch: {} | ||
schedule: | ||
- cron: "30 1 * * *" | ||
|
||
jobs: | ||
close-issues: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
days-before-stale: 21 | ||
days-before-close: 7 | ||
stale-issue-label: "S-stale" | ||
stale-pr-label: "S-stale" | ||
exempt-issue-labels: "M-prevent-stale" | ||
exempt-pr-labels: "M-prevent-stale" | ||
stale-issue-message: "This issue is stale because it has been open for 21 days with no activity." | ||
close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale." | ||
exempt-all-milestones: true | ||
exempt-all-assignees: true | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |