We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf19d68 commit d64d90fCopy full SHA for d64d90f
.github/workflows/update-translations.yml
@@ -0,0 +1,21 @@
1
+name: Update translations from Weblate
2
+on:
3
+ schedule:
4
+ - cron: "0 10 * * 1"
5
+ workflow_dispatch:
6
+jobs:
7
+ update-translations:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: Fetch and merge from Weblate
12
+ # The commit message is generated in Weblate; see https://hosted.weblate.org/addon/17163/
13
+ run: |
14
+ git remote add weblate https://hosted.weblate.org/git/zulip/zulip-flutter/
15
+ git merge --ff-only weblate/main
16
+ - name: Create Pull Request
17
+ uses: peter-evans/create-pull-request@v7
18
+ with:
19
+ branch: update-translations/weblate
20
+ delete-branch: true
21
+ title: Update translations from Weblate
0 commit comments