Update yaml formatting
This commit is contained in:
parent
de34cd2e8c
commit
ec307ce4f8
1 changed files with 13 additions and 9 deletions
22
.github/workflows/stale.yml
vendored
22
.github/workflows/stale.yml
vendored
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue