From f687b09f22792ae95551935ee03c12a62ffd241a Mon Sep 17 00:00:00 2001 From: EduPonz Date: Fri, 15 Mar 2024 12:54:17 +0100 Subject: [PATCH] Refs #19452: Fix base branch decision making Signed-off-by: EduPonz --- .github/workflows/ubuntu-ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ubuntu-ci.yaml b/.github/workflows/ubuntu-ci.yaml index 033331d1..6056b691 100644 --- a/.github/workflows/ubuntu-ci.yaml +++ b/.github/workflows/ubuntu-ci.yaml @@ -35,7 +35,7 @@ concurrency: jobs: ubuntu-ci: - if: ${{ (github.event_name == 'pull_request') && (github.head_ref != '4.0.x-devel') }} + if: ${{ (github.event_name == 'pull_request') && (github.base_ref != '4.0.x-devel') }} strategy: fail-fast: false matrix: @@ -57,7 +57,7 @@ jobs: fastddsgen_branch: ${{ inputs.fastddsgen_branch || github.ref || 'master' }} ubuntu-ci-4_0_x-devel: - if: ${{ (github.event_name == 'pull_request') && (github.head_ref == '4.0.x-devel') }} + if: ${{ (github.event_name == 'pull_request') && (github.base_ref == '4.0.x-devel') }} strategy: fail-fast: false matrix: