From fc31cad998c44915e5e40cb8e1fd1c737399eed2 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Mon, 22 Jul 2024 14:36:06 +0200 Subject: [PATCH] fixup! fix(eval): `event.refUpdate.project` instead of `event.project` --- buildbot_nix/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildbot_nix/__init__.py b/buildbot_nix/__init__.py index e359f59..25a1b4f 100644 --- a/buildbot_nix/__init__.py +++ b/buildbot_nix/__init__.py @@ -152,7 +152,7 @@ class BuildTrigger(steps.BuildStep): return sch def schedule_one(self, build_props: Properties, job): - project_name = build_props.getProperty('event.project') + project_name = build_props.getProperty("event.refUpdate.project") source = f"{project_name}-eval" attr = job.get("attr", "eval-error") name = f"buildbotJobs.{attr}"