From 6d19864b88463d4bde2bb854f35b5d968e243cbe Mon Sep 17 00:00:00 2001 From: hamir-suspect Date: Tue, 23 Sep 2025 10:36:32 +0200 Subject: [PATCH] fix: typo --- notifications/lib/notifications/workers/coordinator.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifications/lib/notifications/workers/coordinator.ex b/notifications/lib/notifications/workers/coordinator.ex index 553a45ce2..800ab56aa 100644 --- a/notifications/lib/notifications/workers/coordinator.ex +++ b/notifications/lib/notifications/workers/coordinator.ex @@ -105,7 +105,7 @@ defmodule Notifications.Workers.Coordinator do defp extract_references(_pipeline, hook = %{git_ref_type: :TAG}), do: {hook.tag_name, nil, ""} defp extract_references(pipeline, hook), do: {nil, pipeline.branch_name, hook.pr_branch_name} - defp extract_references_from_pipeline(%{branch_name: "refs/tags" <> tag_name}), + defp extract_references_from_pipeline(%{branch_name: "refs/tags/" <> tag_name}), do: {tag_name, nil, ""} defp extract_references_from_pipeline(%{branch_name: branch_name}), do: {nil, branch_name, ""}