Skip to content

Commit 280b9a2

Browse files
committed
Fix validation about base.json
1 parent f31cafe commit 280b9a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pull-request-validation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Validate changed files
3434
run: |
3535
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
36-
if [[ $file == *".json"* && $file != "base.json" ]]; then
36+
if [[ $file == *".json"* && $file != *"base.json"* ]]; then
3737
yarn validate:token $file
3838
fi
3939
done

0 commit comments

Comments
 (0)