File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments