Skip to content
Merged
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
8 changes: 6 additions & 2 deletions .github/workflows/protos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,12 @@ jobs:
run: |
git config --global user.name 'GitHub Actions Bot'
git config --global user.email '<>'
git add src/grpc/generated
git commit -m "Update generated sdk directory with latest changes"
git add src/grpc/generated package-lock.json package.json proto/
if git diff-index --quiet HEAD; then
echo "No changes to commit"
else
git commit -m "Update generated sdk directory with latest changes"
fi

- name: Push Changes
env:
Expand Down