File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ permissions:
33  contents : write 
44  pull-requests : write 
55on :
6+   pull_request :
67  schedule :
78    - cron : " 0 10 * * 1" 
89  workflow_dispatch :
@@ -12,13 +13,17 @@ jobs:
1213    runs-on : ubuntu-latest 
1314    steps :
1415      - uses : actions/checkout@v4 
16+         with :
17+           fetch-depth : 0 
1518
1619      - name : Fetch and merge from Weblate 
1720        #  The commit message is generated in Weblate; see https://hosted.weblate.org/addon/17163/
1821        run : | 
22+           git log --oneline --graph --all -n5 
1923          git remote add weblate https://hosted.weblate.org/git/zulip/zulip-flutter/ 
2024          git fetch weblate 
21-           git merge --ff-only weblate/main 
25+           GIT_COMMITTER_NAME="Hosted Weblate" GIT_COMMITTER_EMAIL="[email protected] " \ 26+             git cherry-pick weblate/main ^HEAD 
2227
2328name : Clone Flutter SDK 
2429        #  TODO(#1204) reinstate shallow clone with --depth=1000 and its corresponding comment here
4752          branch : update-translations/weblate 
4853          delete-branch : true 
4954          title : Update translations from Weblate 
55+           base : ${{ github.head_ref }} 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments