Skip to content

Commit

Permalink
[core] Consider v4.x as the base (#28344)
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon authored Sep 14, 2021
1 parent 4a0617a commit 37b52e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/listChangedFiles.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async function execGitCmd(args) {
}

async function listChangedFiles() {
const comparedBranch = process.env.CIRCLECI ? 'origin/master' : 'master';
const comparedBranch = process.env.CIRCLECI ? 'origin/v4.x' : 'v4.x';
const mergeBase = await execGitCmd(['rev-parse', comparedBranch]);
const gitDiff = await execGitCmd(['diff', '--name-only', mergeBase]);
const gitLs = await execGitCmd(['ls-files', '--others', '--exclude-standard']);
Expand Down

0 comments on commit 37b52e7

Please sign in to comment.