-
Notifications
You must be signed in to change notification settings - Fork 182
42 lines (36 loc) · 990 Bytes
/
crowdin.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Sync with Crowdin
env:
NODE_VERSION: 20
on:
push:
branches:
- "master"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: yarn install
run: yarn install
- name: sync translations
env:
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
run: yarn run crowdin:sync
- name: create pull request
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.BOT_GITHUB_TOKEN }}
commit-message: automatically update translations
title: Update translations
body: Transactions are synced from Crowdin
reviewers: |
el-termikael
vbagirov
branch: update-translations
base: master
delete-branch: true