Skip to content

Close Stale PRs

Close Stale PRs #9

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 has been inactive for 14 days. It will be closed automatically unless there is new activity."
stale-pr-label: "stale"
close-pr-message: "Closed due to 14 days of inactivity."
days-before-stale: 14
days-before-close: 7
operations-per-run: 50