-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.contracts.json
More file actions
103 lines (103 loc) · 3.28 KB
/
plugin.contracts.json
File metadata and controls
103 lines (103 loc) · 3.28 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"version": "v1",
"contracts": [
{
"kind": "module",
"type": "git.webhook",
"mode": "strict",
"config": "workflow.plugins.gitlab.v1.WebhookConfig"
},
{
"kind": "module",
"type": "gitlab.webhook",
"mode": "strict",
"config": "workflow.plugins.gitlab.v1.WebhookConfig"
},
{
"kind": "module",
"type": "gitlab.client",
"mode": "strict",
"config": "workflow.plugins.gitlab.v1.GitLabClientConfig"
},
{
"kind": "step",
"type": "step.gitlab_trigger_pipeline",
"mode": "strict",
"config": "workflow.plugins.gitlab.v1.TriggerPipelineConfig",
"input": "workflow.plugins.gitlab.v1.TriggerPipelineInput",
"output": "workflow.plugins.gitlab.v1.PipelineOutput"
},
{
"kind": "step",
"type": "step.gitlab_pipeline_status",
"mode": "strict",
"config": "workflow.plugins.gitlab.v1.PipelineStatusConfig",
"input": "workflow.plugins.gitlab.v1.PipelineStatusInput",
"output": "workflow.plugins.gitlab.v1.PipelineOutput"
},
{
"kind": "step",
"type": "step.gitlab_create_merge_request",
"mode": "strict",
"config": "workflow.plugins.gitlab.v1.CreateMergeRequestConfig",
"input": "workflow.plugins.gitlab.v1.CreateMergeRequestInput",
"output": "workflow.plugins.gitlab.v1.MergeRequestOutput"
},
{
"kind": "step",
"type": "step.gitlab_create_mr",
"mode": "strict",
"config": "workflow.plugins.gitlab.v1.CreateMergeRequestConfig",
"input": "workflow.plugins.gitlab.v1.CreateMergeRequestInput",
"output": "workflow.plugins.gitlab.v1.MergeRequestOutput"
},
{
"kind": "step",
"type": "step.gitlab_mr_comment",
"mode": "strict",
"config": "workflow.plugins.gitlab.v1.MRCommentConfig",
"input": "workflow.plugins.gitlab.v1.MRCommentInput",
"output": "workflow.plugins.gitlab.v1.MRCommentOutput"
},
{
"kind": "step",
"type": "step.gitlab_parse_webhook",
"mode": "strict",
"config": "workflow.plugins.gitlab.v1.ParseWebhookConfig",
"input": "workflow.plugins.gitlab.v1.ParseWebhookInput",
"output": "workflow.plugins.gitlab.v1.ParseWebhookOutput"
},
{
"kind": "service_method",
"serviceName": "gitlab.client",
"method": "trigger_pipeline",
"mode": "strict",
"input": "workflow.plugins.gitlab.v1.TriggerPipelineInput",
"output": "workflow.plugins.gitlab.v1.PipelineOutput"
},
{
"kind": "service_method",
"serviceName": "gitlab.client",
"method": "pipeline_status",
"mode": "strict",
"input": "workflow.plugins.gitlab.v1.PipelineStatusInput",
"output": "workflow.plugins.gitlab.v1.PipelineOutput"
},
{
"kind": "service_method",
"serviceName": "gitlab.client",
"method": "create_merge_request",
"mode": "strict",
"input": "workflow.plugins.gitlab.v1.CreateMergeRequestInput",
"output": "workflow.plugins.gitlab.v1.MergeRequestOutput"
},
{
"kind": "service_method",
"serviceName": "gitlab.client",
"method": "mr_comment",
"mode": "strict",
"input": "workflow.plugins.gitlab.v1.MRCommentInput",
"output": "workflow.plugins.gitlab.v1.MRCommentOutput"
}
]
}