Skip to content

Commit cdf3d3e

Browse files
committed
Update linter’s yaml too
1 parent cae4d9b commit cdf3d3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/validate_workflows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
# Step 3: Validate each workflow YAML file against schema
3636
- name: Validate against GitHub workflow schema
3737
run: |
38-
for file in $(find .github/workflows -name "*.y*ml"); do
38+
find .github/workflows -name "*.y*ml" -print0 | while IFS= read -r -d '' file; do
3939
echo "Validating $file..."
4040
check-jsonschema \
4141
--schemafile https://json.schemastore.org/github-workflow.json \

0 commit comments

Comments
 (0)