From 9db9661bc9bf812459847cae2a654cbe9a989360 Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Tue, 12 Mar 2024 03:18:16 -0700 Subject: [PATCH] Fix sdk auto-update (#10810) --- .github/workflows/auto-update-otel-sdk.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-update-otel-sdk.yml b/.github/workflows/auto-update-otel-sdk.yml index 2625ac89bb..b9b1d173bb 100644 --- a/.github/workflows/auto-update-otel-sdk.yml +++ b/.github/workflows/auto-update-otel-sdk.yml @@ -92,7 +92,9 @@ jobs: branch="opentelemetrybot/update-opentelemetry-sdk-to-${VERSION}" git checkout -b $branch - git commit -a -m "$message" + git add -u + git add licenses + git commit -m "$message" git push --set-upstream origin $branch gh pr create --title "$message" \ --body "$body" \