summaryrefslogtreecommitdiff
path: root/spec/frontend/editor/schema/ci/json_tests/negative_tests/release_assets_links_invalid_link_type.json
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"
          }
        ]
      }
    }
  }
}