master branch

This commit is contained in:
GenZmeY 2022-03-29 23:22:41 +03:00
parent b42a01c1d7
commit 93da0fcbe0

View File

@ -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