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

variables.json « positive_tests « json_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: ce59b3fbbec63ecc038777001aa74447faceeb05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "variables": {
    "DEPLOY_ENVIRONMENT": {
      "value": "staging",
      "description": "The deployment target. Change this variable to 'canary' or 'production' if needed."
    }
  },
  "gitlab-ci-variables-string": {
    "stage": "test",
    "script": ["true"],
    "variables": {
      "TEST_VAR": "String variable"
    }
  },
  "gitlab-ci-variables-integer": {
    "stage": "test",
    "script": ["true"],
    "variables": {
      "canonical": 685230
    }
  }
}