From 21e1331a29e06092fb1e460ca99e0c28b1b57ac4 Mon Sep 17 00:00:00 2001 From: Marc Pichler Date: Thu, 19 Dec 2024 16:04:13 +0100 Subject: [PATCH] fix(ci): use correct PR title when creating depenency update PR (#2609) --- .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 48e1a17c74..f882a64d26 100644 --- a/.github/workflows/update-otel-deps.yaml +++ b/.github/workflows/update-otel-deps.yaml @@ -43,6 +43,6 @@ jobs: node ./scripts/update-otel-deps.js git commit -am "feat(deps): update deps matching '@opentelemetry/*'" 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' + gh pr create --repo open-telemetry/opentelemetry-js-contrib --title "feat(deps): update deps matching '@opentelemetry/*'" --body 'Updates all `@opentelemetry/*` dependencies to latest' env: GITHUB_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}