Skip to content

Close stale issues and PRs #60

Close stale issues and PRs

Close stale issues and PRs #60

Workflow file for this run

name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 0 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
close-issue-message: 'This issue has been closed due to inactivity. Issues can always be reopened after they have been closed.'
stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
close-pr-message: ' This pull request has been closed due to inactivity. Pull requests can always be reopened after they have been closed.'
stale-issue-label: 'stale'
stale-pr-label: 'stale'
days-before-stale: 365
days-before-close: 14
remove-stale-when-updated: true