Skip to content

Mark stale issues and PRs #5

Mark stale issues and PRs

Mark stale issues and PRs #5

Workflow file for this run

name: Mark stale issues and PRs
on:
schedule:
- cron: '0 8 * * *'
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue has had no activity for 60 days. It will be closed in 30 days unless there is new activity or a maintainer removes the stale label.'
stale-pr-message: 'This PR has had no activity for 60 days. It will be closed in 30 days unless there is new activity or a maintainer removes the stale label.'
close-issue-message: 'Closing due to inactivity. Please re-open if this is still relevant against the current version.'
days-before-stale: 60
days-before-close: 30
stale-issue-label: 'status: stale'
stale-pr-label: 'status: stale'
exempt-issue-labels: 'priority: high'