You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _docs/pipelines/specifications.md
+38-6Lines changed: 38 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -118,20 +118,27 @@ toc: true
118
118
|`spec.triggers.context`| The name of the Git integration to use????. NIMA what happens when not specified?| string| Optional|
119
119
|`spec.triggers.concurrency`| The maximum number of concurrent builds for this trigger, and can range from`1` (the default), to`15`, or unlimited). Define the trigger concurrency when your pipeline has multiple triggers.| string| Optional|
120
120
|`spec.triggers.priority`| ??? Default 0, min -100, max 100| integer| Optional|
|`spec.triggers.terminationPolicy`| The options that determine when to terminate the build from the pipeline. See[spec.terminationPolicy](#specterminationpolicy).| integer| Optional|
122
+
122
123
123
124
124
125
125
126
126
-
Build Termination: Options that determine when a build from the pipeline should terminate:
127
-
Once a build is created terminate previous builds from the same branch
128
-
Once a build is created terminate previous builds only from a specific branch (name matches a regular expression)
129
-
Once a build is created, terminate all other running builds
130
-
Once a build is terminated, terminate all child builds initiated from it
131
127
132
128
133
129
###spec.triggers.events
134
130
131
+
Trigger events depend on and are specific to every Git provider.
|`spec.externalResources.type`| ????Only`git` is supported.|string| Optional|
248
+
|`spec.externalResources.source`| The source folder or the file path in the Git repo from which to copy/retrieve the external resource. (NIMA: is there a format to use)| string| Required|
249
+
|`spec.externalResources.context`| The name of the Git provider to use for the external resource.|string| Optional|
250
+
|`spec.externalResources.destination`|The target folder or the file path to which to copy the external resource. (NIMA: is there a format to use)|string| Required|
251
+
|`spec.externalResources.isFolder`|???|Defines if the external resource (source or destination??) is stored in a folder or a file. <br>If stored in a folder, set to`true`.<br>If the resource is a single file, set to`false`. (what is the default??)| Optional|
252
+
|`spec.externalResources.repo`| The Git repository name for the trigger, in the format`git_repo_owner/git_repo_name`. ??| string| Optional|
253
+
|`spec.externalResources.revision`| The name of the branch or git hash to check out.??| string| Optional|