Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.

Commit d2c57ad

Browse files
authored
[fix] Add docs-k8s-operator to exclusion array (#836)
* [fix] Add docs-k8s-operator to exclusion array * [fix] Make linter happy
1 parent a8e0f7a commit d2c57ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/job/jobManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export class JobManager {
116116
try {
117117
this._jobHandler = null;
118118
if (job?.payload) {
119-
const excludeRepoFromBenchmarks = ['mms-docs'].includes(job.payload.repoName);
119+
const excludeRepoFromBenchmarks = ['mms-docs', 'docs-k8s-operator'].includes(job.payload.repoName);
120120
// Can easily rollback with commenting out this flag.
121121
job.useWithBenchmark = !excludeRepoFromBenchmarks;
122122
await this.createHandlerAndExecute(job);

0 commit comments

Comments
 (0)