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 bda4524 commit 1f57d51Copy full SHA for 1f57d51
.github/workflows/main.yml
@@ -42,12 +42,12 @@ jobs:
42
# Get list of added or modified JSON files in subdirectories
43
git diff --diff-filter=AM --name-only $BASE_COMMIT HEAD | grep '.*/.*\.json$' > changed_json_files.txt || true
44
45
- # Output the list of files
46
- echo "Changed JSON files in subdirectories:"
47
- cat changed_json_files.txt
48
-
49
# Run check.py on each existing JSON file
50
if [ -s changed_json_files.txt ]; then
+ # Output the list of files
+ echo "Changed JSON files in subdirectories:"
+ cat changed_json_files.txt
+
51
while read -r file; do
52
if [ -f "$file" ]; then
53
if [ -s "$file" ]; then
0 commit comments