New translations fields.json (Japanese) #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fix CrowdIn commits | |
on: | |
push: | |
branches: | |
- l10n_main2 | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
- uses: actions/checkout@v4 | |
- run: npm install | |
- run: node helpers/fix-crowdin.js | |
- name: Commit changes | |
run: | | |
git config user.name "STAC Browser CI" | |
git config user.email "actions@users.noreply.github.com" | |
git add -A | |
timestamp=$(date -u) | |
git commit -m ":robot: Automated update for locales: ${timestamp} [skip ci]" || exit 0 | |
git push | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |