Skip to content

Commit 85876ef

Browse files
committed
fix build
1 parent e44fb43 commit 85876ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/utils/github.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ func GetActionsForBatch(batch *models.DiggerBatch) []*github.CheckRunAction {
350350
batchActions = append(batchActions, &github.CheckRunAction{
351351
Label: "Apply all", // max 20 chars
352352
Description: "Apply all jobs", // max 40 chars
353-
Identifier: fmt.Sprintf(batch.DiggerBatchID), // max 20 chars
353+
Identifier: fmt.Sprintf("%v:%v", CheckedRunActionBatchApply, batch.DiggerBatchID), // max 20 chars
354354
})
355355
}
356356
return batchActions
@@ -362,7 +362,7 @@ func GetActionsForJob(job *models.DiggerJob) []*github.CheckRunAction {
362362
batchActions = append(batchActions, &github.CheckRunAction{
363363
Label: "Apply job", // max 20 chars
364364
Description: "Apply this job", // max 40 chars
365-
Identifier: fmt.Sprintf("ajob:%v", job.DiggerJobID), // max 20 chars
365+
Identifier: fmt.Sprintf("%v:%v", CheckedRunActionJobApply, job.DiggerJobID), // max 20 chars
366366
})
367367
}
368368
return batchActions

0 commit comments

Comments
 (0)