Skip to content

Commit 3d1f32a

Browse files
committed
github: workflows: fix yaml error for issue close workflow
Fixes the following workflow action. Run yamllint -f parsable -d "$yamllint_config" --strict .github/workflows/*.yml *.yml yamllint -f parsable -d "$yamllint_config" --strict .github/workflows/*.yml *.yml shell: /usr/bin/bash -e {0} env: yamllint_config: {extends: default, rules: {line-length: {max: 100}}} Warning: orkflows/close-stale.yml:3:1: [warning] truthy value should be one of [false, true] (truthy) Error: Process completed with exit code 2. Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
1 parent fbafa26 commit 3d1f32a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/close-stale.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
name: "Close stale issues"
3-
on:
3+
# yamllint disable-line rule:truthy
4+
on: [true]
45
schedule:
56
- cron: "30 1 * * *"
67

0 commit comments

Comments
 (0)