Welcome to mirror list, hosted at ThFree Co, Russian Federation.

variables.yml « positive_tests « yaml_tests « ci « schema « editor « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53d020c432faa2dbc0575db27f0c7fdf480b002d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
variables:
  TEST_VAR: "hello world!"
  123456: "123456"
  FOO:
    value: "BAR"
    description: "A single value variable"
  DEPLOY_ENVIRONMENT:
    description: "A multi-value variable"
  RAW_VAR:
    value: "Hello $FOO"
    expand: false

rspec:
  script: rspec
  variables:
    RAW_VAR2:
      value: "Hello $DEPLOY_ENVIRONMENT"
      expand: false