2020-12-30 10:06:51 +00:00
|
|
|
name: Sync localisations from Crowdin
|
|
|
|
on:
|
2022-01-09 08:23:38 +00:00
|
|
|
workflow_dispatch:
|
2020-12-30 10:06:51 +00:00
|
|
|
schedule:
|
2022-08-30 16:38:46 +00:00
|
|
|
- cron: '0 0 * * 0'
|
2020-12-30 10:06:51 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-05-02 01:05:17 +00:00
|
|
|
sync-crowdin:
|
2020-12-30 10:06:51 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-04-13 09:15:08 +00:00
|
|
|
- name: Setup build environment
|
|
|
|
uses: android-password-store/android-password-store/.github/reusable-workflows/setup-gradle@develop
|
2021-03-18 07:03:44 +00:00
|
|
|
|
2020-12-30 10:06:51 +00:00
|
|
|
- name: Download new translations from Crowdin
|
2024-04-13 09:15:08 +00:00
|
|
|
shell: bash
|
|
|
|
run: ./gradlew --no-configuration-cache crowdin
|
2021-05-22 15:04:53 +00:00
|
|
|
env:
|
|
|
|
CROWDIN_LOGIN: ${{ secrets.CROWDIN_LOGIN }}
|
|
|
|
CROWDIN_PROJECT_KEY: ${{ secrets.CROWDIN_PROJECT_KEY }}
|
2020-12-30 10:06:51 +00:00
|
|
|
|
2023-02-23 13:56:57 +00:00
|
|
|
- name: Check if PR is required
|
|
|
|
run: if [[ $(git status -s) != '' ]]; then echo "UPDATED=true" >> $GITHUB_ENV; fi
|
2020-12-30 10:06:51 +00:00
|
|
|
|
|
|
|
- name: Create Pull Request
|
2022-08-30 16:38:46 +00:00
|
|
|
id: cpr
|
2024-06-18 19:09:11 +00:00
|
|
|
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6.1.0
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "env.UPDATED == 'true'"
|
2020-12-30 10:06:51 +00:00
|
|
|
with:
|
|
|
|
author: GitHub Actions <noreply@github.com>
|
|
|
|
base: develop
|
|
|
|
body: This is an automated pull request to sync localisations from Crowdin.
|
|
|
|
branch: bot/crowdin-sync
|
|
|
|
commit-message: "strings: sync with crowdin"
|
2022-10-30 08:12:16 +00:00
|
|
|
labels: A-localisation, S-automerge
|
2020-12-30 10:06:51 +00:00
|
|
|
title: Sync localisations from Crowdin
|
2022-09-05 08:11:19 +00:00
|
|
|
token: ${{ secrets.PSL_UPDATE_TOKEN }}
|
2022-08-30 16:38:46 +00:00
|
|
|
|
2022-09-05 08:11:19 +00:00
|
|
|
- name: Enable automerge for PR
|
2022-08-30 16:38:46 +00:00
|
|
|
if: "${{ steps.cpr.outputs.pull-request-operation == 'created' }}"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
gh pr merge --squash --auto "${PR_URL}"
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.PSL_UPDATE_TOKEN }}
|
|
|
|
PR_URL: ${{ steps.cpr.outputs.pull-request-url }}
|