Skip to content

Mark stale issues and PRs #43

Mark stale issues and PRs

Mark stale issues and PRs #43

Workflow file for this run

# Configuration for stale issue/PR bot
# Closes issues and PRs with no activity after the specified time
name: "Mark stale issues and PRs"
on:
schedule:
- cron: "30 1 * * *"
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: |
This issue has been inactive for 30 days and is being marked as stale.
It will be closed in 7 days unless there is further activity.
stale-pr-message: |
This PR has been inactive for 30 days and is being marked as stale.
It will be closed in 7 days unless there is further activity.
stale-issue-label: "stale"
stale-pr-label: "stale"
exempt-issue-labels: "priority:P0,priority:P1,pinned,security"
exempt-pr-labels: "dependencies,pinned,security"
days-before-stale: 30
days-before-close: 7