Skip to content

Close stale issues and PRs #36

Close stale issues and PRs

Close stale issues and PRs #36

Workflow file for this run

name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 0 3 * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
start-date: '2021-01-06T00:00:00Z'
stale-issue-message: 'This issue is stale because it has been open 20 days with no activity. Remove stale label or comment or this will be closed in 4 days.'
stale-pr-message: 'This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
close-pr-message: 'This PR was closed because it has been stalled for 5 days with no activity.'
days-before-issue-stale: 20
days-before-pr-stale: 30
days-before-issue-close: 4
days-before-pr-close: 5
exempt-issue-labels: 'pinned,security,bug,enhancement,help-wanted'
exempt-pr-labels: 'pinned,security,bug,enhancement,help-wanted'