I have the following .gitlab-ci.yml configuration:
default: ... stages: - ... variables: # COLORS E: "\e[1;91m" # ERROR S: "\e[1;32m" # SUCCESS I: "\e[1;34m" # INFO R: "\033[0m" # RESET # Other vars ... .script-before: &script-before - ... .other-script: &other-script job_1: before_script: - *script-before stage: ... only: - ... variables: ... script: - *other-script The pipelines don't run with these colors variables. I have tried changing the names of the variables but still the pipelines will not trigger.
