From 7ed316972156f1b00483ad9eef31e11293262b7c Mon Sep 17 00:00:00 2001 From: Emekcan Aras Date: Mon, 29 Jul 2024 16:09:01 +0100 Subject: [PATCH] ci: Fix kas branch issue with version 4.3.2 With kas 4.3, yml files need to set a branch for a specific commit since kas now checks whether the target branch contains the specific commit or not. This creates an issue on meta-cassini CI since meta-cassini-bsp triggers a CI pipeline without setting the branch parameter dynamically. This commit adds the change to set the branch parameter dynamically to fix this issue. Signed-off-by: Emekcan Aras --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9b34184..a344a63 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -70,6 +70,7 @@ trigger-meta-cassini: PARENT_PIPELINE_ID: $CI_PIPELINE_ID REPOS_BSP_URL: $CI_PROJECT_URL REPOS_BSP_REFSPEC: $CI_COMMIT_SHA + REPOS_BSP_BRANCH: $CI_COMMIT_BRANCH CODE_QUALITY_DISABLED: "true" SAST_DISABLED: "true" SECRET_DETECTION_DISABLED: "true" -- GitLab