-
-
Notifications
You must be signed in to change notification settings - Fork 322
61 lines (52 loc) · 1.58 KB
/
translation_keys.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Translation keys
on:
push:
branches: [ main ]
workflow_dispatch:
permissions:
pull-requests: write
contents: write
jobs:
build:
if: github.repository_owner == 'gristlabs'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Let's get all the branches
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install Node.js packages
run: yarn install
- name: Build code
run: yarn run build:prod
- name: Scan for keys
id: scan-keys
run: |
git checkout -b translation-keys
yarn run generate:translation
git status --porcelain
if [[ $(git status --porcelain | wc -l) -eq "0" ]]; then
echo "No changes"
echo "CHANGED=false" >> $GITHUB_ENV
else
echo "Changes detected"
echo "CHANGED=true" >> $GITHUB_ENV
fi
- name: setup git config
run: |
git config user.name "Paul's Grist Bot"
git config user.email "<paul+bot@getgrist.com>"
- name: Prepare PR
if: env.CHANGED == 'true'
run: |
git commit -m "automated update to translation keys" -a
git push --set-upstream origin HEAD:translation-keys -f
num=$(gh pr list --search "automated update to translation keys" --json number -q ".[].number")
if [[ "$num" = "" ]]; then
gh pr create --fill
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}