-
Notifications
You must be signed in to change notification settings - Fork 182
39 lines (34 loc) · 946 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
name: Sync with Crowdin
on:
push:
branches:
- "master"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 16.x
- 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@v4
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