From f611353f7c6143cbd23b0fff8e98a78bf6be04b0 Mon Sep 17 00:00:00 2001 From: Marc Pichler Date: Wed, 4 Dec 2024 20:54:28 +0100 Subject: [PATCH] ci(update-otel-deps): use --set-upstream when pushing (#2583) --- .github/workflows/update-otel-deps.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-otel-deps.yaml b/.github/workflows/update-otel-deps.yaml index 05cf5a7eb2..48e1a17c74 100644 --- a/.github/workflows/update-otel-deps.yaml +++ b/.github/workflows/update-otel-deps.yaml @@ -42,7 +42,7 @@ jobs: git checkout -b feat/update-otel-deps node ./scripts/update-otel-deps.js git commit -am "feat(deps): update deps matching '@opentelemetry/*'" - git push origin feat/update-otel-deps --force + git push --set-upstream origin feat/update-otel-deps --force gh pr create --repo open-telemetry/opentelemetry-js-contrib --title 'chore: prepare next release' --body 'Updates all `@opentelemetry/*` dependencies to latest' env: GITHUB_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}