Skip to content

Close Stale Issues

Close Stale Issues #10

Workflow file for this run

name: Close Stale Issues
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue has been inactive for 30 days. It will be closed automatically unless there is new activity."
stale-issue-label: "stale"
close-issue-message: "Closed due to 30 days of inactivity. Feel free to reopen if still relevant."
days-before-stale: 30
days-before-close: 7
operations-per-run: 100
exempt-issue-labels: "pinned,security"