Skip to content

Close stale pull requests #19

Close stale pull requests

Close stale pull requests #19

Workflow file for this run

name: "Close stale pull requests"
on:
schedule:
- cron: "0 0 */3 * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 60
days-before-close: 7
stale-pr-message: 'This PR is stale because it has been open for 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
close-pr-message: 'This PR was closed due to 2 weeks of inactivity. Feel free to reopen it if necessary.'
stale-pr-label: 'stale'