Skip to content

Close stale issues and PRs #5

Close stale issues and PRs

Close stale issues and PRs #5

Workflow file for this run

name: Close stale issues and PRs
on:
schedule:
- cron: "0 3 * * *"
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
days-before-stale: 60
days-before-close: 14
stale-issue-label: stale
stale-pr-label: stale
stale-issue-message: >
This issue has had no activity for 60 days and will be closed in 14
days if nothing further happens. Comment to keep it open.
stale-pr-message: >
This pull request has had no activity for 60 days and will be closed
in 14 days if nothing further happens. Comment to keep it open.
exempt-issue-labels: "pinned,security,keep"
exempt-pr-labels: "pinned,keep"
exempt-draft-pr: true