Skip to content

Update stale issues and PRs #176

Update stale issues and PRs

Update stale issues and PRs #176

Workflow file for this run

name: Update stale issues and PRs
on:
workflow_dispatch:
schedule:
- cron: 0 13 * * 1-5
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10
with:
exempt-issue-labels: P1,P2
days-before-issue-stale: 10
days-before-issue-close: 5
days-before-pr-stale: 30
days-before-pr-close: -1 # Never close PRs
stale-issue-message: 'This issue is stale because it has been open for 30 days with no activity. Remove the stale label or comment or this will be closed in 3 days.'
stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity.'
close-issue-message: 'This issue was closed because it was stalled for 3 days with no activity.'