We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e5a2da commit 0b768e8Copy full SHA for 0b768e8
raycicmd/config.go
@@ -299,14 +299,15 @@ func ciDefaultConfig(envs Envs) *config {
299
case rayPRPipeline, rayV2PremergePipeline, rayDevPipeline:
300
return prPipelineConfig("ray-pr", nil, -1)
301
case rayV2MicrocheckPipeline:
302
- mcPipelineConfig := prPipelineConfig(
+ c := prPipelineConfig(
303
"ray-pr-microcheck",
304
map[string]string{"RAYCI_MICROCHECK_RUN": "1"},
305
1,
306
)
307
- mcPipelineConfig.NotifyOwnerOnFailure = true
+ c.NotifyOwnerOnFailure = true
308
+ c.SkipTags = append(c.SkipTags, "skip-on-microcheck")
309
- return mcPipelineConfig
310
+ return c
311
}
312
313
// By default, assume it is less privileged.
0 commit comments