Skip to content

Close stale issues #348

Close stale issues

Close stale issues #348

Workflow file for this run

name: 'Close stale issues'
"on":
schedule:
- cron: '30 1 * * *'
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
# Don't process PRs
days-before-stale: -1
# Process only issues
days-before-issue-stale: 60
days-before-issue-close: 30
# Add this label after 'days-before-issue-stale' days to mark it as stale
stale-issue-label: 'no-activity'
# Process only issues that contain the label 'waiting-for-author'
only-labels: 'need-more-info'
close-issue-message: 'This issue was closed because it has been stalled for several weeks with no activity.'