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

release_assets_links_invalid_link_type.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: 048911aefa3c34f73921ee3523a2e3a9b9284628 (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
{
  "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"
          }
        ]
      }
    }
  }
}