Skip to content

Mark Stale Issues and PRs #1104

Mark Stale Issues and PRs

Mark Stale Issues and PRs #1104

Workflow file for this run

name: Mark Stale Issues and PRs
on:
schedule:
- cron: "30 1 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
exempt-all-milestones: true
exempt-pr-labels: 'DO NOT MERGE!'
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this issue will be closed in 30 days.'
stale-pr-message: 'This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this PR will be closed in 14 days.'
close-issue-message: 'This issue was closed because it has been stale for 30 days with no activity.'
close-pr-message: 'This PR was closed because it has been stale for 14 days with no activity.'
days-before-issue-stale: 90
days-before-pr-stale: 45
days-before-issue-close: 30
days-before-pr-close: 14
stale-issue-label: 'stale'
stale-pr-label: 'stale'
closed-issue-label: 'closed-stale'
closed-pr-label: 'closed-stale'