Skip to content

Commit

Permalink
Fix validation about base.json
Browse files Browse the repository at this point in the history
  • Loading branch information
HeesungB committed Feb 23, 2024
1 parent f31cafe commit 280b9a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Validate changed files
run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
if [[ $file == *".json"* && $file != "base.json" ]]; then
if [[ $file == *".json"* && $file != *"base.json"* ]]; then
yarn validate:token $file
fi
done

0 comments on commit 280b9a2

Please sign in to comment.