Skip to content
This repository has been archived by the owner on Jun 28, 2023. It is now read-only.

Housekeeping - Close stale issues and PRs #469

Housekeeping - Close stale issues and PRs

Housekeeping - Close stale issues and PRs #469

name: Housekeeping - Close stale issues and PRs
on:
schedule:
- cron: '0 4 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v5
with:
stale-issue-message: 'This issue is being marked stale due to a period of inactivity. If this issue is still relevant, please comment or remove the stale label. Otherwise, this issue will close in 30 days.'
stale-pr-message: 'This PR is being marked stale due to a period of inactivty. If this PR is still relevant, please comment or remove the stale label. Otherwise, this PR will close in 30 days.'
close-issue-message: 'This issue was closed because it has been stalled for 30 days with no activity. If this issue is still relevant, please re-open a new issue.'
close-pr-message: 'This PR was closed because it has been stalled for 30 days with no activity. If this PR is still relevant, please re-open a new PR against main.'
days-before-issue-stale: 60
days-before-pr-stale: 60
days-before-issue-close: 30
days-before-pr-close: 30
# Don't add stale label to PRs / issues with milestones "upcoming" attached.
exempt-milestones: "upcoming"
# Don't add stale label to PRs / issues with this label
exempt-issue-labels: "never-stale"
# The number of operations to perform, default is 30
# but due to number of open issues and prs, the oldest open issues and prs are missed
operations-per-run: 60