-
-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,9 @@ jobs: | |
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # Ensure full Git history is fetched | ||
ref: ${{ github.ref }} # Checkout the branch that triggered the workflow | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
|
@@ -35,7 +38,7 @@ jobs: | |
git config user.email "[email protected]" | ||
git add apps/keira/src/assets/i18n/*.json | ||
git commit -m "Fix missing translation keys" | ||
git push | ||
git push origin HEAD | ||
else | ||
echo "No missing keys detected." | ||
fi |