mirror of
https://github.com/glittercowboy/get-shit-done
synced 2026-04-26 01:35:29 +02:00
- actions/checkout v4.2.2 → v6.0.2 (pr-gate, auto-branch) - actions/github-script v7.0.1/v8 → v9.0.0 (all workflows) - actions/stale v9.0.0 → v10.2.0 Eliminates Node.js 20 deprecation warnings. Node 20 actions will be forced to Node 24 on June 2, 2026 and removed Sept 16, 2026. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
name: Stale Cleanup
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 9 * * 1' # Monday 9am UTC
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0
|
|
with:
|
|
days-before-stale: 28
|
|
days-before-close: 14
|
|
stale-issue-message: >
|
|
This issue has been inactive for 28 days. It will be closed in 14 days
|
|
if there is no further activity. If this is still relevant, please comment
|
|
or update to the latest GSD version and retest.
|
|
stale-pr-message: >
|
|
This PR has been inactive for 28 days. It will be closed in 14 days
|
|
if there is no further activity.
|
|
close-issue-message: >
|
|
Closed due to inactivity. If this is still relevant, please reopen
|
|
with updated reproduction steps on the latest GSD version.
|
|
stale-issue-label: 'stale'
|
|
stale-pr-label: 'stale'
|
|
exempt-issue-labels: 'fix-pending,priority: critical,pinned,confirmed-bug,confirmed'
|
|
exempt-pr-labels: 'fix-pending,priority: critical,pinned,DO NOT MERGE'
|