−log
Some checks failed
/ alpine (push) Successful in 44s
/ debian (push) Successful in 1m15s
/ ubuntu (push) Successful in 1m25s
/ arch (push) Successful in 1m34s
/ alma (push) Blocked by required conditions
/ rocky (push) Blocked by required conditions
/ opensuse (push) Has been cancelled
/ fedora (push) Has been cancelled

This commit is contained in:
Marc Beninca 2024-10-21 22:05:25 +02:00
parent ef00f4aa97
commit 5112abf37e
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -28,7 +28,6 @@ def parse_inputs() -> dict[str, object]:
inputs = {} inputs = {}
for variable, value in sorted(projects.environment.items()): for variable, value in sorted(projects.environment.items()):
if variable.startswith(PREFIX): if variable.startswith(PREFIX):
log.info(variable)
name = variable.removeprefix(PREFIX).lower() name = variable.removeprefix(PREFIX).lower()
inputs[name] = literal_eval(value) inputs[name] = literal_eval(value)
return inputs return inputs