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:
|
|
|
|
- name: Checkout
|
2023-04-13 17:22:28 +00:00
|
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
2020-12-30 10:06:51 +00:00
|
|
|
|
2021-12-06 18:19:29 +00:00
|
|
|
- name: Set up JDK
|
2023-03-27 19:27:47 +00:00
|
|
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
2022-02-17 04:43:04 +00:00
|
|
|
with:
|
2022-05-25 12:29:04 +00:00
|
|
|
distribution: temurin
|
2022-09-05 08:21:05 +00:00
|
|
|
java-version: 18
|
2021-03-18 07:03:44 +00:00
|
|
|
|
2020-12-30 10:06:51 +00:00
|
|
|
- name: Download new translations from Crowdin
|
2023-04-15 04:59:57 +00:00
|
|
|
uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 # v2.4.2
|
2022-02-17 04:43:04 +00:00
|
|
|
with:
|
2022-06-16 07:45:31 +00:00
|
|
|
arguments: --no-configuration-cache crowdin
|
2022-08-30 16:38:46 +00:00
|
|
|
gradle-home-cache-cleanup: true
|
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
|
2023-04-05 03:42:18 +00:00
|
|
|
uses: peter-evans/create-pull-request@5b4a9f6a9e2af26e5f02351490b90d01eb8ec1e5 # v5.0.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 }}
|