Skip to content

Commit 9398710

Browse files
committed
fix: Add git push to testing mode
The workflow was committing changes but not pushing them to the remote. Added 'git push origin HEAD' to push commits to the current branch. This ensures translation updates appear in the PR automatically.
1 parent b98df05 commit 9398710

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/update-translations.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,10 @@ jobs:
8181
- Triggered by: ${{ github.event_name }}
8282
- Date: $(date -u +"%Y-%m-%d %H:%M:%S UTC")"
8383
84-
echo "✅ Changes committed to current branch"
84+
# Push to remote
85+
git push origin HEAD
86+
87+
echo "✅ Changes committed and pushed to current branch"
8588
8689
- name: Commit and push changes (Production Mode)
8790
if: env.HAS_CHANGES == 'true' && steps.context.outputs.mode == 'production'

0 commit comments

Comments
 (0)