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

release_assets_links.json « negative_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: 00b5b54c7e2658b34e08c49f1c05b814d3baa8ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
  "gitlab-ci-release-assets-links-missing": {
    "script": "dostuff",
    "stage": "deploy",
    "release": {
      "description": "Created using the release-cli $EXTRA_DESCRIPTION",
      "tag_name": "$CI_COMMIT_TAG",
      "assets": {}
    }
  },
  "gitlab-ci-release-assets-links-empty": {
    "script": "dostuff",
    "stage": "deploy",
    "release": {
      "description": "Created using the release-cli $EXTRA_DESCRIPTION",
      "tag_name": "$CI_COMMIT_TAG",
      "assets": {
        "links": []
      }
    }
  },
  "gitlab-ci-release-assets-links-invalid-link-type": {
    "script": "dostuff",
    "stage": "deploy",
    "release": {
      "description": "Created using the release-cli $EXTRA_DESCRIPTION",
      "tag_name": "$CI_COMMIT_TAG",
      "assets": {
        "links": [
          {
            "name": "asset1",
            "url": "https://example.com/assets/1"
          },
          {
            "name": "asset2",
            "url": "https://example.com/assets/2",
            "filepath": "/pretty/url/1",
            "link_type": "invalid"
          }
        ]
      }
    }
  }
}