We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d552d9 commit de0d0d7Copy full SHA for de0d0d7
.github/scripts/renderers.py
@@ -13,8 +13,8 @@ def render_organization_yaml(data: GithubIssueFormDataParser):
13
template = env.get_template("organization.yaml.j2")
14
15
org_data = {
16
- field: data.get(str(OrgFormSchemaIds[field]))
17
- for field in OrgFormSchemaIds.__members__.keys()
+ field.name: data.get(field.value)
+ for field in OrgFormSchemaIds
18
}
19
20
return template.render(organization=org_data)
0 commit comments