minor clean up

This commit is contained in:
william-allspice 2024-08-22 15:55:37 -05:00
parent 431ca79733
commit 98c4999a1f

View File

@ -316,20 +316,25 @@ func getWorkflowFileLink(ctx *context_module.Context, run *actions_model.ActionR
if err != nil { if err != nil {
return "" return ""
} }
entries, err := actions.ListWorkflows(commit) entries, err := actions.ListWorkflows(commit)
if err != nil { if err != nil {
return "" return ""
} }
var workflowEntry *git.TreeEntry var workflowEntry *git.TreeEntry
for _, entry := range entries { for _, entry := range entries {
if entry.Name() == run.WorkflowID { if entry.Name() == run.WorkflowID {
workflowEntry = entry workflowEntry = entry
break
} }
} }
var workflowFilePath string
if workflowEntry != nil { if workflowEntry == nil {
workflowFilePath = workflowEntry.GetPathInRepo() return ""
} }
workflowFilePath := workflowEntry.GetPathInRepo()
if workflowFilePath == "" { if workflowFilePath == "" {
return "" return ""
} }