Skip to content

Commit

Permalink
fix fix
Browse files Browse the repository at this point in the history
  • Loading branch information
barmac committed May 17, 2023
1 parent 8b74769 commit 7443cbe
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tasks/stages/update-translations
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,17 @@ if [[ "x$SKIP_COMMIT" = "x" ]]; then

git config user.email "$BPMN_IO_EMAIL"
git config user.name "$BPMN_IO_USERNAME"
git config push.default simple
git switch -c "update-translations-$(date +%Y%m%d%H%M%S)"

git add -A
git commit -m "docs: update translations for $TAG"
git push -q
gh pr create --fill \
--label "i18n" \
--title "docs: update translations for $TAG" \
--body "This PR updates translations for $TAG" \
--reviewer "$REVIEWERS" \
--head $(git branch --show-current)
--reviewer "$REVIEWERS"
else
echo "Skipping commit (SKIP_COMMIT=$SKIP_COMMIT)"
fi

0 comments on commit 7443cbe

Please sign in to comment.