From 9513eb488b397f83b35732f747e99f42196e8a36 Mon Sep 17 00:00:00 2001 From: brb Date: Thu, 6 Jul 2023 15:58:25 +0200 Subject: [PATCH] adapted to new definition --- code/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/app.py b/code/app.py index 26a93f4..0b97581 100644 --- a/code/app.py +++ b/code/app.py @@ -60,7 +60,7 @@ def handle_event(request: GiteaRequest): ) # load runner commands runner_script = load_runner_script(path=runner_script_path) - for pipeline_name, pipeline_step in runner_script.items(): + for pipeline_name, pipeline_step in runner_script.pipelines.items(): print(pipeline_name) print(pipeline_step)