Skip to content

Commit

Permalink
DOP-4414 testing job prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
anabellabuckvar committed Mar 16, 2024
1 parent 4a37c8d commit 68bd960
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/controllers/v2/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,9 @@ export const triggerSmokeTestAutomatedBuild = async (event: APIGatewayEvent): Pr
async function createAndInsertJob() {
let names = '';
for (const s in SMOKETEST_SITES) {
names += s;
names = names + s;
const repoName = SMOKETEST_SITES[s];
if (repoName == 'docs') return true;
const jobTitle = 'Smoke Test ' + repoName;
let repoInfo, projectEntry, repoOwner;

Expand Down Expand Up @@ -233,7 +234,6 @@ export const triggerSmokeTestAutomatedBuild = async (event: APIGatewayEvent): Pr
}
// deployable.push(job);
}
return names;

// try {
// await jobRepository.insertBulkJobs(deployable, c.get('jobsQueueUrl'));
Expand Down

0 comments on commit 68bd960

Please sign in to comment.