Skip to content

Close stale issues and PRs #57

Close stale issues and PRs

Close stale issues and PRs #57

Workflow file for this run

name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 2 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
stale-issue-label: 'stale'
days-before-issue-stale: 60
days-before-issue-close: 30
exempt-pr-labels: 'work-in-progress'
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.
stale-pr-label: 'stale'
days-before-pr-stale: 60
days-before-pr-close: 30
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.