Skip to content

Commit

Permalink
DO NOT MERGE: Run on this PR.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmv committed Jan 8, 2025
1 parent dfeb257 commit bb7d89c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/update-translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ permissions:
contents: write
pull-requests: write
on:
pull_request:
schedule:
- cron: "0 10 * * 1"
workflow_dispatch:
Expand All @@ -12,13 +13,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}

- name: Fetch and merge from Weblate
# The commit message is generated in Weblate; see https://hosted.weblate.org/addon/17163/
run: |
git log --oneline --graph --all -n5
git remote add weblate https://hosted.weblate.org/git/zulip/zulip-flutter/
git fetch weblate
git merge --ff-only weblate/main
GIT_COMMITTER_NAME="Hosted Weblate" GIT_COMMITTER_EMAIL="[email protected]" \
git cherry-pick weblate/main ^HEAD
- name: Clone Flutter SDK
# TODO(#1204) reinstate shallow clone with --depth=1000 and its corresponding comment here
Expand Down

0 comments on commit bb7d89c

Please sign in to comment.