Skip to content

Close stale issues and PRs #931

Close stale issues and PRs

Close stale issues and PRs #931

Workflow file for this run

name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 4 * * *'
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9.0.0
with:
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It may be closed manually after one month of inactivity. Thank you for your contributions.'
stale-issue-label: 'stale'
days-before-issue-stale: 365
stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It may be closed manually after one month of inactivity. Thank you for your contributions.'
stale-pr-label: 'stale'
days-before-pr-stale: 90