From 9d616dc8fd0440e6413731b794d38507ed931a93 Mon Sep 17 00:00:00 2001 From: Krystof Woldrich Date: Mon, 17 Jun 2024 11:44:09 +0200 Subject: [PATCH 1/2] fix(ci): Remove JS V8 dropped packages from the update CI --- .github/workflows/update-deps.yml | 1 + scripts/update-javascript.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-deps.yml b/.github/workflows/update-deps.yml index 70701930fc..672ef5890d 100644 --- a/.github/workflows/update-deps.yml +++ b/.github/workflows/update-deps.yml @@ -7,6 +7,7 @@ on: # And on on every PR merge so we get the updated dependencies ASAP, and to make sure the changelog doesn't conflict. push: branches: + - '**' - main jobs: diff --git a/scripts/update-javascript.sh b/scripts/update-javascript.sh index ca464d280f..a9cd10b23a 100755 --- a/scripts/update-javascript.sh +++ b/scripts/update-javascript.sh @@ -3,7 +3,7 @@ set -euo pipefail tagPrefix='' repo="https://github.com/getsentry/sentry-javascript.git" -packages=('@sentry/browser' '@sentry/core' '@sentry/hub' '@sentry/integrations' '@sentry/react' '@sentry/types' '@sentry/utils' '@sentry-internal/typescript') +packages=('@sentry/browser' '@sentry/core' '@sentry/react' '@sentry/types' '@sentry/utils' '@sentry-internal/typescript') packages+=('@sentry-internal/eslint-config-sdk' '@sentry-internal/eslint-plugin-sdk') . $(dirname "$0")/update-package-json.sh From e89da5eb797cc03829afd65db9f8f7114d65ba48 Mon Sep 17 00:00:00 2001 From: Krystof Woldrich Date: Mon, 17 Jun 2024 11:51:20 +0200 Subject: [PATCH 2/2] remove tmp --- .github/workflows/update-deps.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/update-deps.yml b/.github/workflows/update-deps.yml index 672ef5890d..70701930fc 100644 --- a/.github/workflows/update-deps.yml +++ b/.github/workflows/update-deps.yml @@ -7,7 +7,6 @@ on: # And on on every PR merge so we get the updated dependencies ASAP, and to make sure the changelog doesn't conflict. push: branches: - - '**' - main jobs: