mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
51 lines
1.9 KiB
YAML
51 lines
1.9 KiB
YAML
---
|
|
name: Crowdin Sync
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs: {}
|
|
schedule:
|
|
- cron: '0 0 * * 5'
|
|
|
|
jobs:
|
|
crowdin-sync:
|
|
name: Autosync
|
|
runs-on: ubuntu-20.04
|
|
env:
|
|
_CROWDIN_PROJECT_ID: "269690"
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
|
|
- name: Login to Azure - CI Subscription
|
|
uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.6
|
|
with:
|
|
creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
|
|
|
|
- name: Retrieve secrets
|
|
id: retrieve-secrets
|
|
uses: bitwarden/gh-actions/get-keyvault-secrets@4a7ddc1b38ca5cb4e3e43578f4df5cabe4f55a67
|
|
with:
|
|
keyvault: "bitwarden-ci"
|
|
secrets: "crowdin-api-token, github-gpg-private-key, github-gpg-private-key-passphrase"
|
|
|
|
- name: Download translations
|
|
uses: crowdin/github-action@965d501f160af7b1f88aed4c29154b0caf1e94b9 # v1.9.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
CROWDIN_API_TOKEN: ${{ steps.retrieve-secrets.outputs.crowdin-api-token }}
|
|
with:
|
|
config: crowdin.yml
|
|
crowdin_branch_name: master
|
|
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
|
|
create_pull_request: true
|
|
pull_request_title: "Autosync Crowdin Translations"
|
|
pull_request_body: "Autosync the updated translations"
|
|
gpg_private_key: ${{ steps.retrieve-secrets.outputs.github-gpg-private-key }}
|
|
gpg_passphrase: ${{ steps.retrieve-secrets.outputs.github-gpg-private-key-passphrase }}
|