Skip to content

Commit

Permalink
Rebuild GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Jul 7, 2021
1 parent 1b3e5bc commit 361d317
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/createOrUpdateStagingDeploy/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ function getPullRequestsMergedBetween(fromRef, toRef) {
console.log('Getting pull requests merged between the following refs:', fromRef, toRef);
const localGitLogs = execSync(`git log --format="%s" ${fromRef}...${toRef}`).toString();
return _.map(
[...localGitLogs.matchAll(/Merge pull request #(\d{1,6}) from (?!Expensify\/main)/g)],
[...localGitLogs.matchAll(/Merge pull request #(\d{1,6}) from (?!Expensify\/(?:master|main|version-))/g)],
match => match[1],
);
}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/getDeployPullRequestList/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function getPullRequestsMergedBetween(fromRef, toRef) {
console.log('Getting pull requests merged between the following refs:', fromRef, toRef);
const localGitLogs = execSync(`git log --format="%s" ${fromRef}...${toRef}`).toString();
return _.map(
[...localGitLogs.matchAll(/Merge pull request #(\d{1,6}) from (?!Expensify\/main)/g)],
[...localGitLogs.matchAll(/Merge pull request #(\d{1,6}) from (?!Expensify\/(?:master|main|version-))/g)],
match => match[1],
);
}
Expand Down

0 comments on commit 361d317

Please sign in to comment.