2024-11-22 04:41:11 +00:00
---
2024-11-22 09:02:55 +00:00
name : 'Close stale issues and PRs'
2024-11-22 04:41:11 +00:00
on : # yamllint disable-line rule:truthy
schedule :
- cron : '30 1 * * *'
permissions :
issues : write
2024-11-22 09:02:55 +00:00
pull-requests : write
2024-11-22 04:41:11 +00:00
jobs :
stale :
if : github.repository == 'spantaleev/matrix-docker-ansible-deploy'
runs-on : ubuntu-latest
steps :
- uses : actions/stale@v9
with :
2024-11-22 09:13:26 +00:00
######################################################################
# Issues/PRs
######################################################################
2024-11-22 09:13:49 +00:00
exempt-assignees : 'spantaleev,aine-etke'
2024-11-22 09:02:55 +00:00
# An allow-list of label(s) to only process the issues/PRs which contain one of these label(s).
any-of-labels : 'needs-info'
2024-11-22 09:13:26 +00:00
# Use this to do a dry run from a pull request
# debug-only: true
2024-11-22 09:02:55 +00:00
######################################################################
# Issues
######################################################################
2024-11-22 04:41:11 +00:00
stale-issue-message : 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
close-issue-message : 'This issue was closed because it has been stalled for 7 days with no activity. If this issue is still reproduced, feel free to provide the issue with up-to-date information.'
stale-issue-label : 'stale'
# Add this label to exempt the issue from being marked as stale due to inactivity
exempt-issue-labels : 'confirmed'
# An allow-list of label(s) to only process the issues which contain one of these label(s).
2024-11-22 09:02:55 +00:00
any-of-issue-labels : 'question'
######################################################################
# PRs
######################################################################
days-before-pr-stale : '365'
days-before-pr-close : '30'
stale-pr-message : 'This PR is stale because it has been open a year with no activity. Remove stale label or this will be closed in 30 days.'
close-pr-message : 'This PR was closed because it has been stalled for 30 days with no activity.'
stale-pr-label : 'stale'
# Add this label to exempt the PR from being marked as stale due to inactivity
exempt-pr-labels : 'confirmed'
# An allow-list of label(s) to only process the PRs which contain one of these label(s).
any-of-pr-labels : 'needs-rebase'
# Use this to ignore updates such as comments (only to keep the PR alive by bumping)
# ignore-pr-updates: true