Skip to content

Stale

Stale #315

Workflow file for this run

name: Stale
on:
workflow_dispatch:
schedule:
- cron: '0 12 * * *'
permissions:
contents: write # only for delete-branch option
issues: write
pull-requests: write
jobs:
Stale:
runs-on: ubuntu-latest
name: Run stale
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Stale
id: stale
uses: actions/stale@v9
with:
stale-issue-message: 'This issue is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
stale-pr-message: 'This PR is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 10 days.'
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
close-pr-message: 'This PR was closed because it has been stalled for 10 days with no activity.'
days-before-issue-stale: 14
days-before-pr-stale: 14
days-before-issue-close: 5
days-before-pr-close: 10
stale-pr-label: 'stale-label'
stale-issue-label: 'stale-label'