1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-07-19 14:24:58 +02:00
bitwarden-browser/.github/workflows/crowdin-pull.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
2.2 KiB
YAML
Raw Normal View History

---
2021-08-13 16:06:28 +02:00
name: Crowdin Sync
on:
workflow_dispatch:
inputs: {}
schedule:
- cron: '0 0 * * 5'
2021-08-13 16:06:28 +02:00
jobs:
crowdin-sync:
name: Autosync
runs-on: ubuntu-22.04
2022-05-10 16:20:32 +02:00
strategy:
fail-fast: false
matrix:
include:
- app_name: browser
crowdin_project_id: "268134"
- app_name: desktop
crowdin_project_id: "299360"
- app_name: web
crowdin_project_id: "308189"
2021-08-13 16:06:28 +02:00
steps:
- name: Checkout repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2021-08-13 16:06:28 +02:00
- name: Login to Azure
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
2021-08-13 16:06:28 +02:00
with:
creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
2021-08-13 16:06:28 +02:00
- name: Retrieve secrets
id: retrieve-secrets
2023-11-08 19:08:34 +01:00
uses: bitwarden/gh-actions/get-keyvault-secrets@main
with:
keyvault: "bitwarden-ci"
secrets: "crowdin-api-token, github-gpg-private-key, github-gpg-private-key-passphrase"
2021-08-13 16:06:28 +02:00
- name: Download translations
2023-11-08 19:08:34 +01:00
uses: bitwarden/gh-actions/crowdin@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CROWDIN_API_TOKEN: ${{ steps.retrieve-secrets.outputs.crowdin-api-token }}
2022-05-10 16:20:32 +02:00
CROWDIN_PROJECT_ID: ${{ matrix.crowdin_project_id }}
with:
config: crowdin.yml
crowdin_branch_name: main
upload_sources: false
upload_translations: false
download_translations: true
github_user_name: "bitwarden-devops-bot"
github_user_email: "106330231+bitwarden-devops-bot@users.noreply.github.com"
commit_message: "Autosync the updated translations"
localization_branch_name: crowdin-auto-sync-${{ matrix.app_name }}
create_pull_request: true
2022-05-10 16:20:32 +02:00
pull_request_title: "Autosync Crowdin Translations for ${{ matrix.app_name }}"
pull_request_body: "Autosync the updated translations"
working_directory: apps/${{ matrix.app_name }}
gpg_private_key: ${{ steps.retrieve-secrets.outputs.github-gpg-private-key }}
gpg_passphrase: ${{ steps.retrieve-secrets.outputs.github-gpg-private-key-passphrase }}