Skip to content

Close stale issues and PRs #689

Close stale issues and PRs

Close stale issues and PRs #689

Workflow file for this run

name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 19 * * *'
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v7
with:
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment on it to reset.'
stale-pr-message: 'This PR is stale because it has been open 60 days with no activity. Remove stale label or comment on it to reset.'
days-before-stale: 60
days-before-close: -1
stale-issue-label: stale
stale-pr-label: stale
exempt-pr-labels: channel,enhancement
exempt-issue-labels: channel,enhancement
operations-per-run: 100