mirror of
https://github.com/go-gitea/gitea.git
synced 2024-09-01 14:56:30 +00:00
minor clean up
This commit is contained in:
parent
431ca79733
commit
98c4999a1f
@ -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 ""
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user