Skip to content

Close stale PRs

Close stale PRs #653

Workflow file for this run

---
name: 'Close stale PRs'
on:
schedule:
- cron: '0 0 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-pr-message: 'This PR is stale because it has been open 7 days with no activity. Remove stale label or comment or this will be closed in 7 days'
days-before-stale: 7
days-before-close: 7