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

artifacts.yml « positive_tests « yaml_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: 20c1fc2c50f5352d6d418c90d1c24d4ae7dde8bd (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
# valid artifact:reports:cyclonedx

cyclonedx string path:
  artifacts:
    reports:
      cyclonedx: foo

cyclonedx glob path:
  artifacts:
    reports:
      cyclonedx: "*.foo"

cylonedx list of string paths:
  artifacts:
    reports:
      cyclonedx:
        - foo
        - ./bar/baz

cylonedx mixed list of string paths and globs:
  artifacts:
    reports:
      cyclonedx:
        - ./foo
        - "bar/*.baz"