fix: relax stale issue/pr handling

Wait 90 days until stale indication, wait another 30 days until closing.
Excempt "enhancement" and "feature request" issues from stale handling.
Excempt "in progress" pull reuquests from stale handling.

Signed-off-by: Bobby Noelte <b0661n0e17e@gmail.com>
This commit is contained in:
Bobby Noelte 2025-04-20 07:45:41 +02:00
parent a39e0a77a7
commit 1e1b7540f3

View File

@ -19,17 +19,17 @@ jobs:
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0 - uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
with: with:
stale-pr-message: 'This pull request has been marked as stale because it has been open (more stale-pr-message: 'This pull request has been marked as stale because it has been open (more
than) 60 days with no activity. Remove the stale label or add a comment saying that you than) 90 days with no activity. Remove the stale label or add a comment saying that you
would like to have the label removed otherwise this pull request will automatically be would like to have the label removed otherwise this pull request will automatically be
closed in 14 days. Note, that you can always re-open a closed pull request at any time.' closed in 30 days. Note, that you can always re-open a closed pull request at any time.'
stale-issue-message: 'This issue has been marked as stale because it has been open (more stale-issue-message: 'This issue has been marked as stale because it has been open (more
than) 60 days with no activity. Remove the stale label or add a comment saying that you than) 90 days with no activity. Remove the stale label or add a comment saying that you
would like to have the label removed otherwise this issue will automatically be closed in would like to have the label removed otherwise this issue will automatically be closed in
14 days. Note, that you can always re-open a closed issue at any time.' 30 days. Note, that you can always re-open a closed issue at any time.'
days-before-stale: 60 days-before-stale: 90
days-before-close: 14 days-before-close: 30
stale-issue-label: 'Stale' stale-issue-label: 'stale'
stale-pr-label: 'Stale' stale-pr-label: 'stale'
exempt-pr-labels: 'In progress' exempt-pr-labels: 'in progress'
exempt-issue-labels: 'In progress,Feature,Feature Request' exempt-issue-labels: 'feature request, enhancement'
operations-per-run: 400 operations-per-run: 400