Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/update-api-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@ jobs:
echo "๐Ÿ”„ Updating existing PR #$EXISTING_PR..."
echo -e "$PR_BODY" | gh pr edit $EXISTING_PR \
--title "Update API to $_HASH" \
--body-file -
--body-file - \
--add-label "binding-update"
PR_URL="https://github.com/${{ github.repository }}/pull/$EXISTING_PR"
echo "## โœ… Updated PR: $PR_URL" >> $GITHUB_STEP_SUMMARY
else
Expand All @@ -211,6 +212,7 @@ jobs:
--title "Update API to $_HASH" \
--body-file - \
--base main \
--head $_BRANCH_NAME)
--head $_BRANCH_NAME \
--label "binding-update")
echo "## ๐Ÿš€ Created PR: $PR_URL" >> $GITHUB_STEP_SUMMARY
fi
Loading