From 93da0fcbe075598fff0edf57fe3011292367e1f0 Mon Sep 17 00:00:00 2001 From: GenZmeY Date: Tue, 29 Mar 2022 23:22:41 +0300 Subject: [PATCH] master branch --- .github/workflows/locales-format.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/locales-format.yml b/.github/workflows/locales-format.yml index 3c666d7..5960c7b 100644 --- a/.github/workflows/locales-format.yml +++ b/.github/workflows/locales-format.yml @@ -3,7 +3,7 @@ name: locales-format on: push: branches: - - jq-action + - master jobs: locales-format: @@ -18,8 +18,8 @@ jobs: run: | git config --local user.email "github-actions[bot]@users.noreply.github.com" git config --local user.name "github-actions" - - name: Checkout jq-action - run: git checkout jq-action + - name: Checkout master + run: git checkout master - name: Fix jsons run: find locales -type f -name '*.json' | xargs -P $(nproc) -I {} sh -c 'echo "$(jq . "$1")" > "$1"' -- {} - name: Commit changes