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

Commit 320730b

Browse files
author
Dominic Scheirlinck
committed
fix: also log the matching patterns
1 parent 960e2c0 commit 320730b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/diff.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export function matchConfigs(buildId: string, configs: Config[], changedFiles: s
105105

106106
return configs.map((config) => {
107107
const changes = matchingChanges(config.monorepo.matches, changedFiles);
108-
log(`Found ${count(changes, 'matching change')} for ${config.name}`);
108+
log(`Found ${count(changes, 'matching change')} for ${config.name} (${JSON.stringify(config.monorepo.matches)})`);
109109
return { ...config, buildId, changes };
110110
});
111111
}

0 commit comments

Comments
 (0)