Skip to content

Commit 30cc8f8

Browse files
authored
chore: update change detection branch to 24.3 (#6966)
1 parent 49d373d commit 30cc8f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wtr-utils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const hasAllParam = process.argv.includes('--all');
4040
* Check if lockfile has changed.
4141
*/
4242
const isLockfileChanged = () => {
43-
const log = execSync('git diff --name-only origin/main HEAD').toString();
43+
const log = execSync('git diff --name-only origin/24.3 HEAD').toString();
4444
return log.split('\n').some((line) => line.includes('yarn.lock'));
4545
};
4646

@@ -49,7 +49,7 @@ const isLockfileChanged = () => {
4949
*/
5050
const getChangedPackages = () => {
5151
const pathToLerna = path.normalize('./node_modules/.bin/lerna');
52-
const output = execSync(`${pathToLerna} la --since origin/main --json --loglevel silent`); // NOSONAR
52+
const output = execSync(`${pathToLerna} la --since origin/24.3 --json --loglevel silent`); // NOSONAR
5353
return JSON.parse(output.toString()).map((project) => project.name.replace('@vaadin/', ''));
5454
};
5555

0 commit comments

Comments
 (0)