Skip to content

Commit

Permalink
fix kebab-case issue
Browse files Browse the repository at this point in the history
  • Loading branch information
melotik committed Aug 7, 2024
1 parent ecb44c7 commit 0a164a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/schema-format-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Get list of modified /schema folders
id: get_modified_folders
run: |
MODIFIED_FOLDERS=$(git diff --name-only -r HEAD^1 HEAD | grep '^schemas/' | cut -d'/' -f2 | sort -u)
MODIFIED_FOLDERS=$(git diff --name-only -r HEAD^1 HEAD | grep '^schemas/' | cut -d'/' -f2 | sort -u | sed 's/-/_/g')
echo "folders=$MODIFIED_FOLDERS" >> $GITHUB_ENV
- name: Check existence of /schema files
Expand Down

0 comments on commit 0a164a2

Please sign in to comment.