From dbfa565b102725f16bbae2442e4be6b454bea118 Mon Sep 17 00:00:00 2001 From: Natsu Date: Mon, 1 Jul 2024 11:18:38 +0700 Subject: [PATCH] chore(dispatch.yml): modify Sort JSON files step to exclude sorting JSON files in "local-files/genericTrans/lyrics" directory --- .github/workflows/dispatch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dispatch.yml b/.github/workflows/dispatch.yml index 5aff969c..114d999e 100644 --- a/.github/workflows/dispatch.yml +++ b/.github/workflows/dispatch.yml @@ -61,7 +61,7 @@ jobs: run: prettier --write "local-files/**/*.json" - name: Sort JSON files - run: find local-files -type f -name '*.json' -exec sort-json {} \; + run: find local-files -type f -name '*.json' -not -path "local-files/genericTrans/lyrics/*" -exec sort-json {} \; - name: Authorize Git run: |