Skip to content

Github Stale Issues Check #4

Github Stale Issues Check

Github Stale Issues Check #4

name: Github Stale Issues Check
on:
schedule:
- cron: '59 23 * * *' # Run every day just before midnight
jobs:
close_stale_prs:
runs-on: ubuntu-latest
steps:
- name: Close stale issues
uses: actions/stale@v9
with:
any-of-labels: 'Needs more info'
stale-issue-message: 'This issue is stale because it has been open 21 days with no activity. Please comment on this issue otherwise it will be closed in 7 days.'
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.'
days-before-issue-stale: 21
days-before-issue-close: 7