From 3859acaa52228fd8edca3483aaa8661177e7247b Mon Sep 17 00:00:00 2001 From: branberry Date: Thu, 31 Aug 2023 13:16:00 -0500 Subject: [PATCH] [DOP-3911]: Add feature --- api/controllers/v2/github.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/controllers/v2/github.ts b/api/controllers/v2/github.ts index 3778679ca..7f5c6fc6b 100644 --- a/api/controllers/v2/github.ts +++ b/api/controllers/v2/github.ts @@ -9,6 +9,7 @@ import { RepoBranchesRepository } from '../../../src/repositories/repoBranchesRe import { EnhancedJob, JobStatus } from '../../../src/entities/job'; import { markBuildArtifactsForDeletion, validateJsonWebhook } from '../../handlers/github'; import { getMonorepoPaths } from '../../../src/monorepo'; +import { getUpdatedFilePaths } from '../../../src/monorepo/utils/path-utils'; async function prepGithubPushPayload( githubEvent: PushEvent, @@ -102,12 +103,13 @@ export const TriggerBuild = async (event: APIGatewayEvent): Promise