summaryrefslogtreecommitdiff
path: root/spec/frontend/editor/schema/ci/json_tests/positive_tests/variables.json
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
    }
  }
}