Skip to content

Commit 0f4b01a

Browse files
authored
URL orbs must include version: 2.1 (#9423)
The minimal content for an orb is: ``` version: 2.1 ``` Since config overrides pull in the override config as an orb, the override config must contain the `version` key.
1 parent 99c047a commit 0f4b01a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

jekyll/_cci2/how-to-override-config.adoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,8 @@ Each development team creates their own orb file (for example, `team-config.yml`
232232

233233
[source,yaml]
234234
----
235+
version: 2.1
236+
235237
jobs:
236238
custom-test:
237239
docker:
@@ -257,7 +259,7 @@ jobs:
257259

258260
Notice that this file:
259261

260-
* Does NOT include `version: 2.1`.
262+
* Must include `version: 2.1`.
261263
* Does NOT include `orbs:` or `workflows:` sections.
262264
* Contains only the `jobs:` section with the specific job definitions the team wants to override.
263265

0 commit comments

Comments
 (0)