From 8283054cc8acba5786099a344d56144d1e0504d3 Mon Sep 17 00:00:00 2001 From: Chris Coley <chris@codingallnight.com> Date: Tue, 6 May 2025 17:34:47 -0700 Subject: [PATCH] Apply manual on the job instead of in job:rules so that's it's optional instead of blocking --- .gitlab-ci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6e0239c..b209310 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -49,9 +49,8 @@ build:python2.7: build:2.10: extends: .build - rules: - - when: manual - allow_failure: false + when: manual + allow_failure: false variables: ALPINE_VERSION: 3.14 ANSIBLE_VERSION: '2.10' @@ -59,9 +58,8 @@ build:2.10: build:2.9: extends: .build - rules: - - when: manual - allow_failure: false + when: manual + allow_failure: false variables: ALPINE_VERSION: 3.12 ANSIBLE_VERSION: 2.9 -- GitLab