This commit is contained in:
Marc Beninca 2024-10-21 14:58:34 +02:00
parent 7dc9f06e47
commit e6d631994e
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -15,8 +15,7 @@ PREFIX = "INPUT_"
def action() -> None:
"""Display action inputs."""
for variable, value in sorted(projects.environment.items()):
if variable.startswith(PREFIX):
for variable, value in parse_inputs().items():
log.info("%s = %s", variable, value)