Skip to content

Mark Stale Issues and PRs #396

Mark Stale Issues and PRs

Mark Stale Issues and PRs #396

Workflow file for this run

name: Mark Stale Issues and PRs
on:
schedule:
- cron: '30 5 * * *' # Runs daily at 5:30 AM UTC
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open for 30 days with no activity. Remove the stale label or comment, or this will be closed in 5 days.'
stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity. Remove the stale label or comment, or this will be closed in 5 days.'
days-before-stale: 30
days-before-close: 5
stale-issue-label: 'stale'
stale-pr-label: 'stale'