From 3eef5b188d4bf2264ef25d778762aeb1d064aa42 Mon Sep 17 00:00:00 2001 From: Jan Michael Auer Date: Tue, 25 Oct 2022 20:58:26 +0200 Subject: [PATCH] fix(gha): Skip Sentry integration tests on library release builds --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6155ca85690..52c2a780f90 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: branches: - master - release/** + - release-library/** pull_request: @@ -299,6 +300,9 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 25 + # Skip redundant checks for library releases + if: "!startsWith(github.ref, 'refs/heads/release-library/')" + steps: - name: Checkout Relay uses: actions/checkout@v3