2021-06-29 23:04:25 +02:00
name : 'Close stale issues and PRs'
on :
schedule :
2021-07-01 17:59:13 +02:00
- cron : '0 */8 * * *'
2021-06-29 23:04:25 +02:00
jobs :
stale :
runs-on : ubuntu-latest
steps :
2023-12-07 19:40:06 +01:00
- uses : actions/stale@v9
2021-06-29 23:04:25 +02:00
with :
repo-token : ${{ secrets.GITHUB_TOKEN }}
2021-08-08 20:45:36 +02:00
exempt-issue-milestones : 'future,alpha,beta,release,bugfix,improvement,enhancement,help wanted'
exempt-pr-milestones : 'bugfix,improvement,enhancement,help wanted'
2021-06-29 23:04:25 +02:00
exempt-all-pr-assignees : true
2021-07-07 16:57:07 +02:00
stale-issue-message : 'This issue is stale because it has been open 120 days with no activity. Remove stale label or comment or this will be closed in 30 days.'
stale-pr-message : 'This PR is stale because it has been open 120 days with no activity. Remove stale label or comment or this will be closed in 30 days.'
2021-07-02 08:45:02 +02:00
close-issue-message : 'This issue was closed because it has been stalled for 30 days with no activity.'
close-pr-message : 'This PR was closed because it has been stalled for 30 days with no activity.'
2021-06-30 16:45:24 +02:00
days-before-issue-stale : 120
days-before-pr-stale : 120
days-before-issue-close : 30
days-before-pr-close : 30