Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit b9159bf

Browse files
authored
Disable Automatic PR Perf Jobs (#15176)
* Disable PR perf jobs. * Actually enable on-demand PR runs.
1 parent 9aafd0c commit b9159bf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

buildpipeline/perf_pipelinejobs.groovy

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,9 @@ def pipeline = perfPipeline
2727
params = ['XUNIT_PERFORMANCE_MAX_ITERATION':'6',
2828
'XUNIT_PERFORMANCE_MAX_ITERATION_INNER_SPECIFIED':'6']
2929

30-
pipeline.triggerPipelineOnEveryGithubPR(triggerName, params)
30+
// Allow PR jobs on request.
31+
pipeline.triggerPipelineOnGithubPRComment(triggerName, params)
32+
33+
// Disable automatic PR runs until throughput issues are addressed.
34+
// pipeline.triggerPipelineOnEveryGithubPR(triggerName, params)
3135
pipeline.triggerPipelineOnGithubPush()

0 commit comments

Comments
 (0)