You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name: Close Stale Issueson:
schedule:
- cron: '0 0 * * 0'# Weeklyworkflow_dispatch:
permissions:
issues: writepull-requests: writejobs:
stale:
runs-on: ubuntu-lateststeps:
- uses: actions/stale@v9with:
days-before-stale: 30days-before-close: 7stale-issue-label: 'stale'stale-issue-message: | Inactive for 30 days. Will close in 7 days unless there's activity.exempt-issue-labels: 'pinned,security,bug'
How It Works
flowchart LR
A[Weekly Scan] --> B{Inactive 30d?}
B -->|No| C[Skip]
B -->|Yes| D[Label Stale]
D --> E{Activity in 7d?}
E -->|Yes| F[Remove Label]
E -->|No| G[Close]