0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-11-25 16:43:04 +01:00

Drop check for jobs from other repo.

This commit is contained in:
Ross Golder 2025-10-23 22:16:46 +07:00
parent be0c0bd68f
commit 09c44f4245
No known key found for this signature in database
GPG Key ID: 253A7E508D2D59CD

View File

@ -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
}