Skip to content

Stale Issues and PRs #19

Stale Issues and PRs

Stale Issues and PRs #19

Workflow file for this run

name: Stale Issues and PRs
on:
schedule:
- cron: '0 9 * * 1'
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10
with:
stale-issue-message: >
This issue has been automatically marked as stale because it has not
had recent activity. It will remain open — this label is informational only; this project never auto-closes.
stale-pr-message: >
This PR has been automatically marked as stale because it has not
had recent activity. It will remain open — this label is informational only; this project never auto-closes.
days-before-stale: 60
days-before-close: -1
exempt-issue-labels: 'pinned,evergreen,omega,blocked'
exempt-pr-labels: 'pinned,evergreen,work-in-progress'
stale-issue-label: 'stale'
stale-pr-label: 'stale'