Skip to content

Close stale issues #9010

Close stale issues

Close stale issues #9010

Workflow file for this run

name: "Close stale issues"
on:
schedule:
- cron: "0 */4 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove the `status: stale` label or comment, or this will be closed in 30 days.'
stale-issue-label: 'status: stale'
exempt-issue-labels: 'kind: task,kind: bug,kind: enhancement'
stale-pr-message: 'This PR is stale because it has been open 90 days with no activity. Remove the `status: stale` label or comment, or this will be closed in 30 days.'
stale-pr-label: 'status: stale'
days-before-stale: 90
days-before-close: 30
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove `status: stale` label or comment, or this will be closed in 30 days.'
stale-issue-label: 'status: stale'
stale-pr-message: 'This PR is stale because it has been open 90 days with no activity. Remove `status: stale` label or comment, or this will be closed in 30 days.'
stale-pr-label: 'status: stale'
only-labels: 'status: unconfirmed'
days-before-stale: 90
days-before-close: 30