Skip to content

🧹 Bot — Stale

🧹 Bot — Stale #39

Workflow file for this run

name: '🧹 Bot — Stale'
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
name: Issues and PRs
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 28 days with no activity. Remove the stale label or comment or this will be closed in 2 days'
stale-pr-message: 'This PR is stale because it has been open 28 days with no activity. Remove the stale label or comment or this will be closed in 2 days'
days-before-stale: 28
days-before-close: 2
stale-issue-label: 'stale'
stale-pr-label: 'stale'
remove-stale-when-updated: true
delete-branch: false
enable-statistics: true