Skip to content

Close Stale Issues

Close Stale Issues #14

Workflow file for this run

name: Close Stale Issues
on:
schedule:
- cron: '0 3 * * 0'
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-issue-stale: 60
days-before-issue-close: 14
days-before-pr-stale: 60
days-before-pr-close: 21
stale-issue-label: 'stale'
stale-pr-label: 'stale'
exempt-issue-labels: 'security,help wanted,good first issue,breaking-change'
exempt-pr-labels: 'security,breaking-change'
stale-issue-message: 'This issue has been automatically marked as stale due to inactivity.'
stale-pr-message: 'This pull request has been automatically marked as stale due to inactivity.'