From 8519eef68772a31a81fac390ec360cb0cb4c49be Mon Sep 17 00:00:00 2001 From: Arshad Mohammed Date: Sun, 16 Nov 2025 01:05:11 -0800 Subject: [PATCH 1/2] Fixing Complete status for Bulk Copy of docs with no fragment paths in them --- actions/graybox/promoted-preview-worker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/graybox/promoted-preview-worker.js b/actions/graybox/promoted-preview-worker.js index 07b7e70..cd32f9c 100644 --- a/actions/graybox/promoted-preview-worker.js +++ b/actions/graybox/promoted-preview-worker.js @@ -216,8 +216,8 @@ async function main(params) { let shouldCompleteStep = false; // Count total files that need to be processed - const totalPromotedFiles = promotedFilesData.length; - const totalCopiedFiles = copiedFilesData.length; + const totalPromotedFiles = promotedFilesData.length || 0; + const totalCopiedFiles = copiedFilesData.length || 0; logger.info(`Debug: Total promoted files: ${totalPromotedFiles}, Total copied files: ${totalCopiedFiles}`); const totalFilesToProcess = totalPromotedFiles + totalCopiedFiles; logger.info(`Debug: Total files to process: ${totalFilesToProcess}`); From bedcf37c476861de05225774b44d8539b35a5887 Mon Sep 17 00:00:00 2001 From: Arshad Mohammed <87503056+arshadparwaiz@users.noreply.github.com> Date: Tue, 28 Apr 2026 19:14:15 -0700 Subject: [PATCH 2/2] Kodiak configs - Change assignee name from armohamm to sabmukhe --- .kodiak/config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.kodiak/config.yaml b/.kodiak/config.yaml index fe0b06f..c47a611 100644 --- a/.kodiak/config.yaml +++ b/.kodiak/config.yaml @@ -20,7 +20,7 @@ notifications: - "grype" # Exclude SBOM tickets which duplicate findings already created by snyk fields: assignee: - name: armohamm + name: sabmukhe customfield_11800: MWPW-164516 # Jira epic security tickets will be assigned to. watchers: # Everyone who is an admin on your repository should be a watcher. - casalino