Skip to content

Close stale issues and PRs #126

Close stale issues and PRs

Close stale issues and PRs #126

Workflow file for this run

name: "Close stale issues and PRs"
on:
schedule:
- cron: "30 1 * * *"
workflow_dispatch:
permissions:
actions: write
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10
with:
close-pr-message: "Thank you for your contribution. This PR has been inactive for a while, so we're closing it to free up bandwidth. Feel free to reopen it if you still find it useful."
days-before-issue-stale: 360
days-before-issue-close: 30
days-before-pr-stale: 90
days-before-pr-close: 10
operations-per-run: 1000