We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c02c48f commit 75f0049Copy full SHA for 75f0049
1 file changed
examples/api2-devdock-template-lifecycle/main.py
@@ -53,7 +53,10 @@ def template_content(content):
53
if not isinstance(content, dict):
54
fail(f"template content must be an object: {content!r}")
55
56
- return dict(content)
+ rendered = dict(content.get("additionalProperties") or {})
57
+ rendered["steps"] = content["steps"]
58
+
59
+ return rendered
60
61
62
def template_payload(name, config):
0 commit comments