Skip to content

Commit b9cf09a

Browse files
fix(ci): break long line to satisfy yamllint
Line 69 was 175 characters (max 160). Split find command across multiple lines with backslashes. Verified locally: ✅ yamllint passes
1 parent 062d22b commit b9cf09a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci-quality-gate.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,10 @@ jobs:
6666
run: |
6767
# Exclude pr-issue-auto-close.yml (complex JS template literals cause parsing errors)
6868
# Exclude smart-sync.yml (uses projects_v2_item event not yet in official schema)
69-
find .github/workflows -name "*.yml" ! -name "pr-issue-auto-close.yml" ! -name "smart-sync.yml" -exec check-jsonschema --builtin-schema github-workflows {} + || true
69+
find .github/workflows -name "*.yml" \
70+
! -name "pr-issue-auto-close.yml" \
71+
! -name "smart-sync.yml" \
72+
-exec check-jsonschema --builtin-schema github-workflows {} + || true
7073
7174
- name: Python syntax check
7275
run: |

0 commit comments

Comments
 (0)