From 75198b834272373aa60cd61aa8ef0490eeac4abb Mon Sep 17 00:00:00 2001 From: Matt Welland Date: Fri, 1 May 2026 12:25:35 +1000 Subject: [PATCH 1/3] fix(workflow): AR requires python or shebang --- cpg_flow_test/run-test-workflow.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpg_flow_test/run-test-workflow.sh b/cpg_flow_test/run-test-workflow.sh index 2495c4a..0b67f25 100755 --- a/cpg_flow_test/run-test-workflow.sh +++ b/cpg_flow_test/run-test-workflow.sh @@ -106,7 +106,7 @@ echo "analysis-runner --access-level "test" --output-dir "cpg-flow_test" --config "$CONFIG_PATH" - workflow.py" + python3 workflow.py" if [ $DRY_RUN -eq 1 ]; then echo "Dry run complete. Exiting..." @@ -122,4 +122,4 @@ analysis-runner \ --access-level "test" \ --output-dir "cpg-flow_test" \ --config "$CONFIG_PATH" \ - workflow.py + python3 workflow.py From 151793df8ceab5d6fc25b30a89e8b9226dad25bb Mon Sep 17 00:00:00 2001 From: Matt Welland Date: Fri, 1 May 2026 12:29:17 +1000 Subject: [PATCH 2/3] reinsert shebang --- cpg_flow_test/workflow.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cpg_flow_test/workflow.py b/cpg_flow_test/workflow.py index 2b84abf..5927ef5 100644 --- a/cpg_flow_test/workflow.py +++ b/cpg_flow_test/workflow.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + import os import sys From 0cf4bf8c6af50855f9afb241390dd7111aac5421 Mon Sep 17 00:00:00 2001 From: MattWellie Date: Fri, 1 May 2026 12:32:51 +1000 Subject: [PATCH 3/3] making workflow.py executable --- cpg_flow_test/workflow.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 cpg_flow_test/workflow.py diff --git a/cpg_flow_test/workflow.py b/cpg_flow_test/workflow.py old mode 100644 new mode 100755