From 63270bba6825274797197de2d3046856bfd84980 Mon Sep 17 00:00:00 2001 From: goat Date: Wed, 30 Oct 2024 21:37:04 +0100 Subject: [PATCH] actually pass reviewer into removal task --- Plogon/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plogon/Program.cs b/Plogon/Program.cs index 2280bdf..d2c8da0 100644 --- a/Plogon/Program.cs +++ b/Plogon/Program.cs @@ -297,7 +297,7 @@ await webservices.RegisterPrNumber(task.InternalName, relevantCommitHashForWebSe GitHubOutputBuilder.StartGroup($"Remove {task.InternalName}"); Log.Information("Remove: {Name} - {Channel}", task.InternalName, task.Channel); - var removeStatus = await buildProcessor.ProcessTask(task, true, null, null, tasks); + var removeStatus = await buildProcessor.ProcessTask(task, true, null, reviewer, tasks); allResults.Add(removeStatus); if (removeStatus.Success)