Skip to content

Stale Issues and PRs #67

Stale Issues and PRs

Stale Issues and PRs #67

Workflow file for this run

name: Stale Issues and PRs
on:
schedule:
- cron: "0 0 * * *"
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: "This issue has been automatically marked as stale because it has not had activity in 30 days. It will be closed in 7 days if no further activity occurs."
stale-pr-message: "This PR has been automatically marked as stale because it has not had activity in 30 days. It will be closed in 7 days if no further activity occurs."
days-before-stale: 30
days-before-close: 7
stale-issue-label: "stale"
stale-pr-label: "stale"
exempt-issue-labels: "pinned,security,bug"
exempt-pr-labels: "pinned,security"