@@ -117,10 +117,10 @@ func DetectWorkflows(
117
117
if err != nil {
118
118
return nil , nil , err
119
119
}
120
- return _DetectWorkflows (gitRepo , commit , triggedEvent , payload , detectSchedule , entries )
120
+ return detectWorkflows (gitRepo , commit , triggedEvent , payload , detectSchedule , entries )
121
121
}
122
122
123
- func _DetectWorkflows (
123
+ func detectWorkflows (
124
124
gitRepo * git.Repository ,
125
125
commit * git.Commit ,
126
126
triggedEvent webhook_module.HookEventType ,
@@ -168,18 +168,18 @@ func _DetectWorkflows(
168
168
}
169
169
170
170
func DetectScheduledGlobalWorkflows (gitRepo * git.Repository , commit * git.Commit , entries git.Entries ) ([]* DetectedWorkflow , error ) {
171
- return _DetectScheduledWorkflows (gitRepo , commit , entries )
171
+ return detectScheduledWorkflows (gitRepo , commit , entries )
172
172
}
173
173
174
174
func DetectScheduledWorkflows (gitRepo * git.Repository , commit * git.Commit ) ([]* DetectedWorkflow , error ) {
175
175
entries , err := ListWorkflows (commit )
176
176
if err != nil {
177
177
return nil , err
178
178
}
179
- return _DetectScheduledWorkflows (gitRepo , commit , entries )
179
+ return detectScheduledWorkflows (gitRepo , commit , entries )
180
180
}
181
181
182
- func _DetectScheduledWorkflows (gitRepo * git.Repository , commit * git.Commit , entries git.Entries ) ([]* DetectedWorkflow , error ) {
182
+ func detectScheduledWorkflows (gitRepo * git.Repository , commit * git.Commit , entries git.Entries ) ([]* DetectedWorkflow , error ) {
183
183
if gitRepo != nil {
184
184
log .Trace ("detect scheduled workflow for gitRepo.Path: %q" , gitRepo .Path )
185
185
}
0 commit comments