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
|
# File 'lib/pipedream/dsl/pipeline/codebuild.rb', line 3
def codebuild(*projects)
default = {
action_type_id: {
category: "Build",
owner: "AWS",
provider: "CodeBuild",
version: "1",
},
run_order: @run_order,
input_artifacts: [name: "MainArtifact"],
}
actions = projects.map do |item|
if item.is_a?(String)
name = item
default.deep_merge(
name: name,
configuration: { project_name: item },
)
else project_name = item.delete(:project_name)
if project_name
item[:configuration] = { project_name: project_name }
end
item[:name] ||= project_name
item.reverse_merge(default)
end
end
action(*actions)
end
|