We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9d5d65d + 5b37bf8 commit 428059cCopy full SHA for 428059c
mergeTranslations.yaml
@@ -0,0 +1,26 @@
1
+# https://crontab.guru/crontab.5.html
2
+
3
+name: Check for and merge l10n updates
4
5
+on:
6
+ workflow_dispatch:
7
+ schedule:
8
+ # * is a special character in YAML so you have to quote this string
9
+ - cron: '09 00 * * 6' # At 00:09 on Saturdays
10
11
+jobs:
12
+ update-translations:
13
+ runs-on: windows-latest
14
+ steps:
15
+ - name: Checkout master
16
+ uses: actions/checkout@v3
17
+ - name: Merge changes
18
+ run: |
19
+ git config --global user.name github-actions
20
+ git config --global user.email github-actions@github.com
21
+ git pull
22
+ git remote add l10n https://github.com/nvdaaddons/evtTracker
23
+ git fetch l10n
24
+ git merge -q --ff -m "Translations automerge" l10n/stable
25
+ git push
26
0 commit comments