Skip to content

Commit

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

git add -A
git commit -m "docs: update translations for $TAG"
gh pr create --fill --label "i18n" --title "docs: update translations for $TAG" --body "This PR updates translations for $TAG" --reviewer "$REVIEWERS"
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)
else
echo "Skipping commit (SKIP_COMMIT=$SKIP_COMMIT)"
fi

0 comments on commit 8b74769

Please sign in to comment.