File tree Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1111 name : workflow-queue
1212 context : <context-key>
1313 only-on-branch : main
14+ # Optionally specify a custom Docker image:
15+ # docker-image: cimg/node:18.0
Original file line number Diff line number Diff line change 1111 name : pipeline-queue
1212 context : <context-key>
1313 only-on-branch : main
14+ # Optionally specify a custom Docker image:
15+ # docker-image: cimg/node:18.0
Original file line number Diff line number Diff line change @@ -2,10 +2,14 @@ description: >
22 This job ensures only a single defined global workflow is running at a given point in time.
33
44docker :
5- - image : cimg/base:stable
5+ - image : << parameters.docker-image >>
66resource_class : small
77
88parameters :
9+ docker-image :
10+ type : string
11+ default : cimg/base:stable
12+ description : " Docker image to use for the executor. Defaults to cimg/base:stable."
913 debug :
1014 type : boolean
1115 default : false
Original file line number Diff line number Diff line change @@ -2,10 +2,14 @@ description: >
22 This job prevents a workflow within a given pipeline from running until all previous workflows have completed.
33
44docker :
5- - image : cimg/base:stable
5+ - image : << parameters.docker-image >>
66resource_class : small
77
88parameters :
9+ docker-image :
10+ type : string
11+ default : cimg/base:stable
12+ description : " Docker image to use for the executor. Defaults to cimg/base:stable."
913 debug :
1014 type : boolean
1115 default : false
You can’t perform that action at this time.
0 commit comments