Skip to content

Close stale issues and PRs #40

Close stale issues and PRs

Close stale issues and PRs #40

Workflow file for this run

name: "Close stale issues and PRs"
on:
schedule:
- cron: "30 1 * * *"
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-24.04
steps:
- uses: actions/stale@v10
with:
days-before-stale: 60
days-before-close: 14
stale-issue-message: "This issue has been inactive for 60 days and will be closed in 14 days if there's no further activity."
stale-pr-message: "This PR has been inactive for 60 days and will be closed in 14 days if there's no further activity."
stale-issue-label: "stale"
stale-pr-label: "stale"
exempt-issue-labels: "pinned,in-progress"
exempt-pr-labels: "pinned,in-progress"