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 09ebdb6 commit d9f0f2eCopy full SHA for d9f0f2e
.github/workflows/validate_schemas.yml
@@ -19,7 +19,7 @@ jobs:
19
run: |
20
echo "Finding YAML and JSON files with a \$schema property…"
21
files=$(grep -rl "\$schema:" . --include="*.yaml" --include="*.json" --exclude-dir="node_modules" | paste -sd '|' -)
22
- json_files=$(grep -rl "\"\$schema\":" . --include="*.json" --exclude-dir="node_modules" | grep -v "context7.json" | paste -sd '|' -)
+ json_files=$(grep -rl "\"\$schema\":" . --include="*.json" --exclude-dir="node_modules" | paste -sd '|' -)
23
all_files=$(echo -e "$files\n$json_files" | paste -sd '|' -)
24
if [ -z "$all_files" ]; then
25
echo "No YAML or JSON files with \$schema were found."
0 commit comments