From ef5c89e70633c6ed6e061492050511032986d8bb Mon Sep 17 00:00:00 2001 From: Shashank Srikanth Date: Wed, 15 Jan 2025 14:33:17 -0800 Subject: [PATCH] Update project and branching logic for deploy time triggers --- metaflow/plugins/events_decorator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metaflow/plugins/events_decorator.py b/metaflow/plugins/events_decorator.py index 458156bf31..53d4d797af 100644 --- a/metaflow/plugins/events_decorator.py +++ b/metaflow/plugins/events_decorator.py @@ -623,7 +623,7 @@ def format_deploytime_value(self): ) if "project_branch" in trigger: if is_stringish(trigger["project_branch"]): - result["branch"] = trigger["project_branch"] + result["project_branch"] = trigger["project_branch"] else: raise MetaflowException( "The *project_branch* attribute of the *flow* is not a string"