From 7e408d197509c738deaf601e0bf7dee8f1d19b69 Mon Sep 17 00:00:00 2001 From: Nikola Jokic Date: Fri, 26 Sep 2025 15:26:12 +0200 Subject: [PATCH] Update controllers/actions.github.com/ephemeralrunner_controller.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- controllers/actions.github.com/ephemeralrunner_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/actions.github.com/ephemeralrunner_controller.go b/controllers/actions.github.com/ephemeralrunner_controller.go index 077fd912..d33d381e 100644 --- a/controllers/actions.github.com/ephemeralrunner_controller.go +++ b/controllers/actions.github.com/ephemeralrunner_controller.go @@ -341,7 +341,7 @@ func (r *EphemeralRunnerReconciler) Reconcile(ctx context.Context, req ctrl.Requ log.Info("Trying to remove the runner from the service") actionsClient, err := r.GetActionsService(ctx, ephemeralRunner) if err != nil { - log.Error(err, "Failed to get actions client for checking the job status") + log.Error(err, "Failed to get actions client for removing the runner from the service") return ctrl.Result{}, nil } if err := actionsClient.RemoveRunner(ctx, int64(ephemeralRunner.Status.RunnerId)); err != nil {