Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .kodiak/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions actions/graybox/promoted-preview-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}`);
Expand Down
Loading