Skip to content

Stale Issues and PRs #102

Stale Issues and PRs

Stale Issues and PRs #102

Workflow file for this run

name: Stale Issues and PRs
on:
schedule:
- cron: '0 6 * * *' # daily 6am UTC
workflow_dispatch:
jobs:
stale:
runs-on: [self-hosted, pi]
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: |
👋 This issue has been inactive for 30 days. It will be closed in 7 days unless there's activity.
If this is still relevant, comment or add the `keep-open` label.
stale-pr-message: |
👋 This PR has been inactive for 14 days. It will be closed in 7 days unless there's activity.
Add the `keep-open` label or push a commit to keep it open.
close-issue-message: 'Closing due to inactivity. Reopen if still needed.'
close-pr-message: 'Closing due to inactivity. Reopen if still needed.'
days-before-issue-stale: 30
days-before-pr-stale: 14
days-before-issue-close: 7
days-before-pr-close: 7
stale-issue-label: 'stale'
stale-pr-label: 'stale'
exempt-issue-labels: 'keep-open,pinned,security,in-progress'
exempt-pr-labels: 'keep-open,pinned,security,do-not-merge'
operations-per-run: 100