From 09c44f42458e457a7deb075b1d9092bd0300e9f9 Mon Sep 17 00:00:00 2001 From: Ross Golder Date: Thu, 23 Oct 2025 22:16:46 +0700 Subject: [PATCH] Drop check for jobs from other repo. --- routers/common/actions.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/routers/common/actions.go b/routers/common/actions.go index 8e5f80565c..2d03dace1d 100644 --- a/routers/common/actions.go +++ b/routers/common/actions.go @@ -63,10 +63,6 @@ func DownloadActionsRunAllJobLogs(ctx *context.Base, ctxRepo *repo_model.Reposit // Add each job's logs to the zip for _, job := range runJobs { - if job.Repo.ID != ctxRepo.ID { - continue // Skip jobs from other repos - } - if job.TaskID == 0 { continue // Skip jobs that haven't started }