From ff0dc55ebe3e57b9143e1affd680eb802f4e7ef8 Mon Sep 17 00:00:00 2001 From: Andrejs Cunskis Date: Tue, 2 Sep 2025 12:04:26 +0200 Subject: [PATCH 1/2] Deploy review-app instance --- app/models/achievements/achievement.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/models/achievements/achievement.rb b/app/models/achievements/achievement.rb index d47868c4b669d9..0fbcaa884c9f2e 100644 --- a/app/models/achievements/achievement.rb +++ b/app/models/achievements/achievement.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true +# test change + module Achievements class Achievement < ApplicationRecord include Avatarable -- GitLab From 35bed9ff4070b77fa16436a3a68040b54e271374 Mon Sep 17 00:00:00 2001 From: Andrejs Cunskis Date: Tue, 2 Sep 2025 16:20:26 +0200 Subject: [PATCH 2/2] Add missing asset tag Download prod asset job artifacts --- .gitlab/ci/review.gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab/ci/review.gitlab-ci.yml b/.gitlab/ci/review.gitlab-ci.yml index 885582d77b40d2..569fdd692501c3 100644 --- a/.gitlab/ci/review.gitlab-ci.yml +++ b/.gitlab/ci/review.gitlab-ci.yml @@ -74,8 +74,7 @@ start-review-app-pipeline: resource_group: review/${CI_COMMIT_REF_SLUG}${SCHEDULE_TYPE} # CI_ENVIRONMENT_SLUG is not available here and we want this to be the same as the environment stage: review needs: - - job: compile-production-assets - artifacts: false + - compile-production-assets # We do not want to have ALL global variables passed as trigger variables, # as they cannot be overridden. See this issue for more context: # @@ -117,6 +116,7 @@ start-review-app-pipeline: PARENT_PIPELINE_ID: $CI_PIPELINE_ID SCHEDULE_TYPE: $SCHEDULE_TYPE DAST_RUN: $DAST_RUN + GLCI_ASSETS_IMAGE_TAG: $GLCI_ASSETS_IMAGE_TAG trigger: strategy: depend include: -- GitLab