mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2026-08-09 16:14:40 +00:00
Reworks docs/changelog/translators.json into two lists maintained by scripts/translators.sh: - mappings: a forever-growing Crowdin-username/id -> npub registry. --seed appends new contributors with a blank npub and never deletes or overwrites existing entries. - sinceLastTag: a rolling snapshot of who has translated since the last v* tag, fully refreshed on every --seed run. The contribution window now defaults to the most recent v* tag instead of a fixed two months (falling back to two months ago when no tag is reachable). The CI seed job fetches tags (fetch-depth: 0) so it can resolve that window. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FWQWVdWLAwBUBX2gJ55y6b
72 lines
2.7 KiB
YAML
72 lines
2.7 KiB
YAML
name: Crowdin Action
|
|
|
|
on:
|
|
push:
|
|
# paths: ["app/src/main/res/**/strings.xml"] // removes filter to allow downloads at any moment.
|
|
branches: [ main ]
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
synchronize-with-crowdin:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
|
|
- name: crowdin action
|
|
uses: crowdin/github-action@v2
|
|
with:
|
|
upload_sources: true
|
|
upload_translations: true
|
|
download_translations: true
|
|
localization_branch_name: l10n_crowdin_translations
|
|
create_pull_request: true
|
|
pull_request_title: 'New Crowdin Translations'
|
|
pull_request_body: 'New Crowdin translations by [Crowdin GH Action](https://github.com/crowdin/github-action)'
|
|
pull_request_base_branch_name: 'main'
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
|
|
|
# Keep docs/changelog/translators.json seeded with everyone who has translated
|
|
# recently, so the per-release `## Translations` credits (scripts/translators.sh)
|
|
# can resolve them to npubs. Runs independently of the sync job above and only
|
|
# opens/updates a PR when a genuinely new contributor appears.
|
|
seed-translators:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
with:
|
|
# Need tags so the script can resolve the last v* release tag for the
|
|
# "since last tag" window.
|
|
fetch-depth: 0
|
|
|
|
- name: Seed translator placeholders from Crowdin
|
|
run: bash scripts/translators.sh --seed
|
|
env:
|
|
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
|
|
|
- name: Open or update the seed PR
|
|
# peter-evans/create-pull-request is MIT-licensed CI-only tooling (not
|
|
# linked into any shipped artifact). It no-ops when there is no diff.
|
|
uses: peter-evans/create-pull-request@v7
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
base: main
|
|
branch: chore/seed-translators
|
|
add-paths: docs/changelog/translators.json
|
|
commit-message: 'chore: seed translator npub placeholders from Crowdin'
|
|
title: 'Seed translator npub placeholders'
|
|
body: |
|
|
New Crowdin contributors were added to `docs/changelog/translators.json`
|
|
with blank npubs. Fill in the npubs you have so the next release's
|
|
`## Translations` credits generate automatically via
|
|
`scripts/translators.sh --from <prev-tag> --to <this-tag>`. |