Skip to content

Commit 8d900cc

Browse files
committed
Release version 0.0.0.dev440
1 parent 42976e9 commit 8d900cc

2 files changed

Lines changed: 14 additions & 11 deletions

File tree

pkg/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespaces = true
1717
# ----------------------------------------- Project Metadata -------------------------------------
1818
#
1919
[project]
20-
version = "0.0.0.dev439"
20+
version = "0.0.0.dev440"
2121
name = "ControlMan"
2222
dependencies = [
2323
"packaging >= 23.2, < 24",

pkg/src/controlman/_data/schema/def/workflow-devcontainer.yaml

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,28 @@ title: Workflow Devcontainer
44
summary: Specification of a development container to use in a CI pipeline.
55
type: object
66
default: { }
7-
required: [ name, path, command, ref ]
7+
required: [ id, command, env, inherit_env, name, ref ]
88
additionalProperties: false
99
properties:
10-
name:
11-
summary: A name for the image created from the container.
12-
type: string
13-
path:
14-
summary: Path to the devcontainer.json configuration file.
10+
id:
1511
type: string
1612
command:
1713
summary: Command to execute in the container.
1814
type: string
19-
ref:
20-
summary: Git reference to trigger image push.
21-
type: string
2215
env:
2316
summary: Environment variables to set in the container.
2417
type: object
18+
default: { }
2519
inherit_env:
2620
summary: Inherit environment variables from the host.
2721
type: boolean
28-
default: false
22+
default: false
23+
name:
24+
summary: A name for the image created from the container.
25+
type: string
26+
default: >-
27+
#{{ return f"{get('name')}-{get('.id').replace('_', '-')}".lower() }}#
28+
ref:
29+
summary: Git reference to trigger image push.
30+
type: string
31+
default: refs/heads/${{ repo.default_branch }}$

0 commit comments

Comments
 (0)