ci: translations update from Hosted Weblate (#272) #11
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: i18n CI | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
actions: read | |
contents: write | |
checks: write | |
pull-requests: write | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
if: github.head_ref != 'weblate-postybirb-postybirb' | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Install Node.js, NPM and Yarn | |
uses: actions/setup-node@v4 | |
with: | |
cache: yarn | |
# Note: These flags needed to speed up ci | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --prefer-offline | |
# Extracts i18n strings from code | |
- name: Extract i18n keys | |
run: yarn lingui:extract | |
# It commits extracted i18n string and eslint/prettier fixes | |
- name: Commit changes | |
run: | | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
# pull only from main branch so it will not fetch all tags | |
git pull origin main | |
git add apps/postybirb-ui/src/lang/* | |
# ignore when nothing to commit | |
yarn exitzero "git commit -m 'ci: extract i18n messages'" | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |