Skip to content

feat(workflows): add stale workflow #1

feat(workflows): add stale workflow

feat(workflows): add stale workflow #1

name: 'Close stale issues and PRs'

Check failure on line 1 in .github/workflows/close-stale-issues.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/close-stale-issues.yml

Invalid workflow file

invalid `cron` attribute "0 0 8 ? * WED,SAT *"
on:
schedule:
- cron: '0 0 8 ? * WED,SAT *'
workflow_dispatch: # can be used to trigger the workflow manually
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
close-issue-message: 'Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open.'
close-pr-message: 'Closing due to lack of requested feedback. If you would like us to look at this, please provide the requested information and we will re-open.'
close-issue-label: 'group:closed-as-inactive'
close-pr-label: 'group:closed-as-inactive'
days-before-close: 1
only-labels: 'group:requested-info'
exempt-issue-labels: 'group:info-provided'
exempt-pr-labels: 'group:info-provided'
# operations-per-run: 300