We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a156db commit fa839c5Copy full SHA for fa839c5
1 file changed
.github/workflows/generate-template-json.py
@@ -66,7 +66,7 @@
66
if re.search('#%', line):
67
envtemp = {}
68
dataenv=line[3:-1].split(': ', 1)
69
- envtemp["name"] = dataenv[0]
+ envtemp["name"] = dataenv[0].lower
70
try:
71
envdesctotal = re.split('\(|\[', dataenv[1])
72
envdesc = envdesctotal[1]
@@ -80,6 +80,7 @@
80
81
envtemp["label"] = envdesctotal[0]
82
envtemp["description"] = envdesc[:-1]
83
+ envtemp["default"] = "changeme"
84
except:
85
envtemp["label"] = dataenv[1]
86
env.append(envtemp)
0 commit comments