Update yaml formatting

This commit is contained in:
Tim Byrne 2021-12-22 12:07:36 -06:00
parent de34cd2e8c
commit ec307ce4f8
No known key found for this signature in database
GPG Key ID: 14DB4FC2465A4B12
1 changed files with 13 additions and 9 deletions

View File

@ -1,16 +1,20 @@
name: 'Close stale issues'
on:
---
name: Close Stale Issues
on: # yamllint disable-line rule:truthy
schedule:
- cron: '30 1 * * *'
- cron: "30 1 * * *" # Daily
jobs:
stale:
Stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
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 5 days with no activity.'
days-before-stale: 60
close-issue-message: >-
This issue was closed because it has been stalled for 5 days with
no activity.
days-before-close: 7
days-before-stale: 60
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.