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,9 +15,8 @@ PREFIX = "INPUT_"
def action() -> None: def action() -> None:
"""Display action inputs.""" """Display action inputs."""
for variable, value in sorted(projects.environment.items()): for variable, value in parse_inputs().items():
if variable.startswith(PREFIX): log.info("%s = %s", variable, value)
log.info("%s = %s", variable, value)
def parse_inputs() -> dict[str, object]: def parse_inputs() -> dict[str, object]: