mirror of
https://github.com/fluxerapp/fluxer.git
synced 2026-09-02 21:04:06 +03:00
88 lines
3.1 KiB
YAML
88 lines
3.1 KiB
YAML
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
name: i18n source sync
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
concurrency:
|
|
group: i18n-source-sync
|
|
cancel-in-progress: false
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
env:
|
|
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
|
|
SOURCE_BRANCH: automation/i18n-source-catalogs
|
|
GH_TOKEN: ${{ github.token }}
|
|
|
|
jobs:
|
|
sync:
|
|
name: refresh catalogs
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 30
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Rust toolchain
|
|
uses: dtolnay/rust-toolchain@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b
|
|
with:
|
|
toolchain: "1.93.0"
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@c5ba7f7862a0f64c1b1a05fbac13e0b8e86ba08c
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
|
|
with:
|
|
node-version: "24"
|
|
cache: "pnpm"
|
|
|
|
- name: Install dependencies
|
|
run: >-
|
|
cargo run --locked --quiet --manifest-path tools/ci/Cargo.toml -- ci
|
|
--step install_dependencies
|
|
|
|
- name: Refresh source catalogs
|
|
run: pnpm i18n:source-sync
|
|
|
|
- name: Format generated catalogs
|
|
run: pnpm biome format --write package.json packages/i18n/package.json packages/i18n/scripts/SyncStaticI18nCatalogs.ts packages/errors/src/i18n fluxer_api/pkgs/email/src/email_i18n fluxer_api/src/api/content_i18n
|
|
|
|
- name: Open source catalog PR
|
|
run: |
|
|
set -euo pipefail
|
|
if [[ -z "$(git status --porcelain -- fluxer_app/src/features/i18n/locales fluxer_marketing/locales packages/errors/src/i18n fluxer_api/pkgs/email/src/email_i18n fluxer_api/src/api/content_i18n)" ]]; then
|
|
echo "No source catalog changes."
|
|
exit 0
|
|
fi
|
|
|
|
git config user.name "fluxer-i18n-bot"
|
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
git switch -c "$SOURCE_BRANCH"
|
|
git add fluxer_app/src/features/i18n/locales fluxer_marketing/locales packages/errors/src/i18n fluxer_api/pkgs/email/src/email_i18n fluxer_api/src/api/content_i18n
|
|
git commit -m "i18n: refresh source catalogs"
|
|
git fetch origin "$SOURCE_BRANCH" || true
|
|
git push --force-with-lease="refs/heads/$SOURCE_BRANCH" origin "HEAD:$SOURCE_BRANCH"
|
|
|
|
pr_number="$(gh pr list --base main --head "$SOURCE_BRANCH" --state open --json number --jq '.[0].number // empty')"
|
|
body="$(cat <<'BODY'
|
|
Refreshes extracted i18n source catalogs and generated locale artifacts after changes on main.
|
|
|
|
Weblate will scan these catalog updates after this PR is merged.
|
|
BODY
|
|
)"
|
|
if [[ -z "$pr_number" ]]; then
|
|
gh pr create --base main --head "$SOURCE_BRANCH" --title "i18n: refresh source catalogs" --body "$body"
|
|
else
|
|
gh pr edit "$pr_number" --title "i18n: refresh source catalogs" --body "$body"
|
|
fi
|