From 9ca6b789a7819015938c7671e6e387fe4e6ce689 Mon Sep 17 00:00:00 2001 From: Ori Kotek Date: Thu, 13 Jul 2023 18:02:38 +0300 Subject: [PATCH] Github custom action development - WIP --- pr_agent/servers/github_action_runner.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pr_agent/servers/github_action_runner.py b/pr_agent/servers/github_action_runner.py index 39f7469d..7589b2f5 100644 --- a/pr_agent/servers/github_action_runner.py +++ b/pr_agent/servers/github_action_runner.py @@ -26,3 +26,7 @@ def run_action(): print("RUNNER_DEBUG not set") return print(RUNNER_DEBUG) + + +if __name__ == '__main__': + run_action()