-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipeline-schema.json
55 lines (55 loc) · 1.13 KB
/
pipeline-schema.json
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
45
46
47
48
49
50
51
52
53
54
55
type: object
properties:
debug:
type: boolean
dryRun:
type: boolean
pipeline:
type: object
properties:
parentPom:
type: string
branching:
type: object
properties:
mainBranch:
type: string
description: the main branch of that project, the default is master
reviewers:
type: integer
branchProtection:
type: object
properties:
modification:
type: boolean
version:
type: string
autoDeployment:
type: object
properties:
release:
type: array
items:
type: string
integration:
type: array
items:
type: string
type:
type: array
items:
type: string
enum: [springBoot,javaLib]
docker:
type: array
items:
type: object
properties:
dockerFileDir:
type: string
imageName:
type: string
required:
- debug
- dryRun
- pipeline