File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ const hasAllParam = process.argv.includes('--all');
5353 * Check if lockfile has changed.
5454 */
5555const isLockfileChanged = ( ) => {
56- const log = execSync ( 'git diff --name-only origin/main HEAD' ) . toString ( ) ; // NOSONAR
56+ const log = execSync ( 'git diff --name-only origin/25.0 HEAD' ) . toString ( ) ; // NOSONAR
5757 return log . split ( '\n' ) . some ( ( line ) => line . includes ( 'yarn.lock' ) ) ;
5858} ;
5959
@@ -62,7 +62,7 @@ const isLockfileChanged = () => {
6262 */
6363const getChangedPackages = ( ) => {
6464 const pathToLerna = path . normalize ( './node_modules/.bin/lerna' ) ;
65- const output = execSync ( `${ pathToLerna } la --since origin/main --json --loglevel silent` ) ; // NOSONAR
65+ const output = execSync ( `${ pathToLerna } la --since origin/25.0 --json --loglevel silent` ) ; // NOSONAR
6666 return JSON . parse ( output . toString ( ) ) . map ( ( project ) => project . name . replace ( '@vaadin/' , '' ) ) ;
6767} ;
6868
You can’t perform that action at this time.
0 commit comments