Skip to content

Commit e44fb43

Browse files
committed
check
1 parent 105eebb commit e44fb43

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/controllers/github.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ func (d DiggerController) GithubAppWebHook(c *gin.Context) {
137137
// run it as a goroutine to avoid timeouts
138138
go func(ctx context.Context) {
139139
defer logging.InheritRequestLogger(ctx)()
140-
handleCheckRunActionEvent(gh, event, d.CiBackendProvider, appId64)
140+
handleCheckRunActionEvent(gh, identifier, event, d.CiBackendProvider, appId64)
141141
}(c.Request.Context())
142142
slog.Info("Processing CheckRun requested_action", "identifier", identifier)
143143
default:

backend/services/spec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ func GetSpecFromJob(job models.DiggerJob) (*spec.Spec, error) {
189189
Job: jobSpec,
190190
Reporter: spec.ReporterSpec{
191191
ReportingStrategy: "comments_per_run",
192-
ReporterType: "lazy",
192+
ReporterType: job.ReporterType,
193193
ReportTerraformOutput: batch.ReportTerraformOutputs,
194194
},
195195
Lock: spec.LockSpec{

0 commit comments

Comments
 (0)