We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cae4d9b commit cdf3d3eCopy full SHA for cdf3d3e
.github/workflows/validate_workflows.yml
@@ -35,7 +35,7 @@ jobs:
35
# Step 3: Validate each workflow YAML file against schema
36
- name: Validate against GitHub workflow schema
37
run: |
38
- for file in $(find .github/workflows -name "*.y*ml"); do
+ find .github/workflows -name "*.y*ml" -print0 | while IFS= read -r -d '' file; do
39
echo "Validating $file..."
40
check-jsonschema \
41
--schemafile https://json.schemastore.org/github-workflow.json \
0 commit comments