Update services/actions/workflows.go

Modify changes to ensure that they are CI conformant.
This commit is contained in:
markturney 2025-03-10 12:17:20 +00:00
parent 20b7a5b004
commit fea389f45b

View file

@ -96,7 +96,7 @@ func (entry *Workflow) Dispatch(ctx context.Context, inputGetter InputValueGette
}
var jobNames []string
for jobName, _ := range wf.Jobs {
for jobName := range wf.Jobs {
jobNames = append(jobNames, jobName)
}