Skip to content

Stale Issues and PRs #87

Stale Issues and PRs

Stale Issues and PRs #87

Workflow file for this run

name: Stale Issues and PRs
on:
schedule:
- cron: "0 0 * * *" # Daily at midnight
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue has been marked as stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days."
stale-pr-message: "This PR has been marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days."
stale-issue-label: "stale"
stale-pr-label: "stale"
days-before-stale: 60
days-before-close: 7
days-before-pr-stale: 30
exempt-issue-labels: "pinned,security,bug,enhancement"
exempt-pr-labels: "pinned,security"