-
Notifications
You must be signed in to change notification settings - Fork 85
43 lines (37 loc) · 1.24 KB
/
pull_translations.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
name: Pull Translations from Transifex
on:
schedule:
- cron: '0 0 1 * *'
workflow_dispatch:
jobs:
pull-translations:
name: Pull Translations from Transifex
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Pull Translations from Transifex
run: |
bash .github/scripts/transifex.sh pull
env:
TX_TOKEN: ${{ secrets.TX_TOKEN }}
- name: Commit and push changes
id: auto-commit-action
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "[Bahmni Infra] | Add. Update Translation Resources"
branch: ${{ github.ref }}
file_pattern: 'openelis/src/*.properties'
repository: .
commit_user_name: Bahmni Infra
commit_user_email: infrastructure@bahmni.org
commit_author: bahmni-infra <infrastructure@bahmni.org>
- name: Check for changes
run: |
if [[ steps.auto-commit-action.outputs.changes_detected == 'true' ]]; then
echo "Changes Detected. Translation Resources Updated."
else
echo "No Changes Detected. Project Already Up-To-Date."
fi