We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8742422 commit 6bbe74fCopy full SHA for 6bbe74f
.github/workflows/update-translations.yml
@@ -18,7 +18,11 @@ jobs:
18
run: |
19
git remote add weblate https://hosted.weblate.org/git/zulip/zulip-flutter/
20
git fetch weblate
21
- git merge --ff-only weblate/main
+ # This may lag behind `main` if weblate is backlogged; this can
22
+ # theoretically cause the PR to not be able to auto-merged, though
23
+ # re-running the action once weblate has caught up should be
24
+ # sufficient to fix that.
25
+ git reset --hard weblate/main
26
27
- name: Clone Flutter SDK
28
# We can't do a depth-1 clone, because we need the most recent tag
0 commit comments