ci_template: correctly spell the global var
authorJordan Petridis <jordan@centricular.com>
Wed, 9 Sep 2020 13:00:54 +0000 (16:00 +0300)
committerJordan Petridis <jordan@centricular.com>
Wed, 9 Sep 2020 13:05:00 +0000 (16:05 +0300)
Close #83

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-ci/-/merge_requests/337>

gitlab/ci_template.yml

index d36b4a4..f30bf55 100644 (file)
@@ -328,14 +328,14 @@ manifest:
 
     # If the user that triggered the Pipeline is the Merge bot and the branch doesn't match
     # the upstream branch set, run the pipeline
-    - if: '$GITLAB_USER_LOGIN == "gstreamer-merge-bot" && $CI_COMMIT_BRANCH != "$GST_UPS_BRANCH"'
+    - if: '$GITLAB_USER_LOGIN == "gstreamer-merge-bot" && $CI_COMMIT_BRANCH != "$GST_UPSTREAM_BRANCH"'
     # When the user isn't the merge bot, require an explicit action to trigger the pipeline
     # to avoid wasting CI resources
     - if: '$GITLAB_USER_LOGIN != "gstreamer-merge-bot"'
       when: 'manual'
     # If this matches, it means the pipeline is running against either the main
     # or a stable branch, so make it manual
-    - if: '$CI_COMMIT_BRANCH == "$GST_UPS_BRANCH"'
+    - if: '$CI_COMMIT_BRANCH == "$GST_UPSTREAM_BRANCH"'
       when: 'manual'
 
   stage: 'preparation'