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:
|
schedule:
|
||||||
- cron: '30 1 * * *'
|
- cron: "30 1 * * *" # Daily
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
stale:
|
Stale:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/stale@v4
|
- uses: actions/stale@v4
|
||||||
with:
|
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: >-
|
||||||
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
|
This issue was closed because it has been stalled for 5 days with
|
||||||
days-before-stale: 60
|
no activity.
|
||||||
days-before-close: 7
|
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