Skip to content

Commit 5c5522a

Browse files
authored
Merge pull request #4442 from Expensify/cherry-pick-staging-4336
2 parents 87c6281 + ab91969 commit 5c5522a

File tree

8 files changed

+15
-9
lines changed

8 files changed

+15
-9
lines changed

.github/actions/createOrUpdateStagingDeploy/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,10 @@ const {execSync} = __nccwpck_require__(3129);
193193
* @returns {Array}
194194
*/
195195
function getPullRequestsMergedBetween(fromRef, toRef) {
196+
const command = `git log --format="%s" ${fromRef}...${toRef}`;
196197
console.log('Getting pull requests merged between the following refs:', fromRef, toRef);
197-
const localGitLogs = execSync(`git log --format="%s" ${fromRef}...${toRef}`).toString();
198+
console.log('Running command: ', command);
199+
const localGitLogs = execSync(command).toString();
198200
return _.map(
199201
[...localGitLogs.matchAll(/Merge pull request #(\d{1,6}) from (?!Expensify\/(?:master|main|version-))/g)],
200202
match => match[1],

.github/actions/getDeployPullRequestList/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,10 @@ const {execSync} = __nccwpck_require__(3129);
117117
* @returns {Array}
118118
*/
119119
function getPullRequestsMergedBetween(fromRef, toRef) {
120+
const command = `git log --format="%s" ${fromRef}...${toRef}`;
120121
console.log('Getting pull requests merged between the following refs:', fromRef, toRef);
121-
const localGitLogs = execSync(`git log --format="%s" ${fromRef}...${toRef}`).toString();
122+
console.log('Running command: ', command);
123+
const localGitLogs = execSync(command).toString();
122124
return _.map(
123125
[...localGitLogs.matchAll(/Merge pull request #(\d{1,6}) from (?!Expensify\/(?:master|main|version-))/g)],
124126
match => match[1],

.github/libs/GitUtils.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ const {execSync} = require('child_process');
99
* @returns {Array}
1010
*/
1111
function getPullRequestsMergedBetween(fromRef, toRef) {
12+
const command = `git log --format="%s" ${fromRef}...${toRef}`;
1213
console.log('Getting pull requests merged between the following refs:', fromRef, toRef);
13-
const localGitLogs = execSync(`git log --format="%s" ${fromRef}...${toRef}`).toString();
14+
console.log('Running command: ', command);
15+
const localGitLogs = execSync(command).toString();
1416
return _.map(
1517
[...localGitLogs.matchAll(/Merge pull request #(\d{1,6}) from (?!Expensify\/(?:master|main|version-))/g)],
1618
match => match[1],

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ android {
150150
minSdkVersion rootProject.ext.minSdkVersion
151151
targetSdkVersion rootProject.ext.targetSdkVersion
152152
multiDexEnabled rootProject.ext.multiDexEnabled
153-
versionCode 1001008206
154-
versionName "1.0.82-6"
153+
versionCode 1001008207
154+
versionName "1.0.82-7"
155155
}
156156
splits {
157157
abi {

ios/ExpensifyCash/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</dict>
3131
</array>
3232
<key>CFBundleVersion</key>
33-
<string>1.0.82.6</string>
33+
<string>1.0.82.7</string>
3434
<key>ITSAppUsesNonExemptEncryption</key>
3535
<false/>
3636
<key>LSApplicationQueriesSchemes</key>

ios/ExpensifyCashTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.0.82.6</string>
22+
<string>1.0.82.7</string>
2323
</dict>
2424
</plist>

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "expensify.cash",
3-
"version": "1.0.82-6",
3+
"version": "1.0.82-7",
44
"author": "Expensify, Inc.",
55
"homepage": "https://new.expensify.com",
66
"description": "Expensify.cash is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",

0 commit comments

Comments
 (0)