Skip to content

Commit 2f68e4b

Browse files
committed
Test 5 runs
1 parent 47f5994 commit 2f68e4b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/staleIssues.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,19 @@ jobs:
1010
steps:
1111
- uses: actions/stale@v9
1212
with:
13-
# Only check issues labeled as bugs
14-
only-labels: "bug"
13+
# Don't close issues with these labels
14+
exempt-issue-labels: 'feature request,question'
15+
# Days of inactivity before marking an issue as stale
1516
days-before-issue-stale: 90
17+
# Days of inactivity before closing an issue
1618
days-before-issue-close: 7
19+
# Name of the stale label
1720
stale-issue-label: "stale"
1821
stale-issue-message: "This issue has been marked as stale due to 90 days of inactivity. If you wish to keep it open, please remove the stale label or leave a comment; otherwise, it will be closed in 7 days."
1922
close-issue-message: "This issue was closed due to 7 days of inactivity after being marked as stale. Feel free to reopen it if it remains relevant."
23+
# Ignore pull requests
2024
days-before-pr-close: false
2125
days-before-pr-stale: false
22-
operations-per-run: 30
26+
operations-per-run: '5'
2327
ascending: true
2428
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)