Skip to content

Commit 428059c

Browse files
Luke DavisLuke Davis
authored andcommitted
Merge branch 'master' into stable
2 parents 9d5d65d + 5b37bf8 commit 428059c

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

mergeTranslations.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)