Skip to content

Commit ac1f8a8

Browse files
authored
Merge pull request #6683 from Expensify/OSBotify-cherry-pick-staging-6655
2 parents 0a976ae + f199c01 commit ac1f8a8

File tree

6 files changed

+8
-12
lines changed

6 files changed

+8
-12
lines changed

.github/workflows/cherryPick.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,14 @@ jobs:
7070
token: ${{ secrets.OS_BOTIFY_TOKEN }}
7171

7272
- name: Decrypt Botify GPG key
73-
if: github.actor == 'OSBotify'
7473
run: cd .github/workflows && gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_SECRET_PASSPHRASE" --output OSBotify-private-key.asc OSBotify-private-key.asc.gpg
7574
env:
7675
LARGE_SECRET_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }}
7776

7877
- name: Import Botify GPG Key
79-
if: github.actor == 'OSBotify'
8078
run: cd .github/workflows && gpg --import OSBotify-private-key.asc
8179

8280
- name: Set up git for Botify
83-
if: github.actor == 'OSBotify'
8481
run: |
8582
git config user.signingkey DBF63700F60F5530
8683
git config commit.gpgsign true
@@ -89,7 +86,6 @@ jobs:
8986
9087
- name: Create branch for new pull request
9188
run: |
92-
git config user.name ${{ github.actor }}
9389
git checkout -b ${{ github.actor }}-cherry-pick-staging-${{ github.event.inputs.PULL_REQUEST_NUMBER }}
9490
git push --set-upstream origin ${{ github.actor }}-cherry-pick-staging-${{ github.event.inputs.PULL_REQUEST_NUMBER }}
9591
@@ -122,13 +118,13 @@ jobs:
122118
- name: Cherry-pick the version-bump to new branch
123119
run: |
124120
git fetch
125-
git cherry-pick -x --mainline 1 --strategy=recursive -Xtheirs ${{ steps.getVersionBumpMergeCommit.outputs.MERGE_COMMIT_SHA }}
121+
git cherry-pick -S -x --mainline 1 --strategy=recursive -Xtheirs ${{ steps.getVersionBumpMergeCommit.outputs.MERGE_COMMIT_SHA }}
126122
127123
- name: Cherry-pick the merge commit of target PR to new branch
128124
id: cherryPick
129125
run: |
130126
echo "Attempting to cherry-pick ${{ steps.getCPMergeCommit.outputs.MERGE_COMMIT_SHA }}"
131-
if git cherry-pick -x --mainline 1 ${{ steps.getCPMergeCommit.outputs.MERGE_COMMIT_SHA }}; then
127+
if git cherry-pick -S -x --mainline 1 ${{ steps.getCPMergeCommit.outputs.MERGE_COMMIT_SHA }}; then
132128
echo "🎉 No conflicts! CP was a success, PR can be automerged 🎉"
133129
echo "::set-output name=SHOULD_AUTOMERGE::true"
134130
else

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ android {
149149
minSdkVersion rootProject.ext.minSdkVersion
150150
targetSdkVersion rootProject.ext.targetSdkVersion
151151
multiDexEnabled rootProject.ext.multiDexEnabled
152-
versionCode 1001011902
153-
versionName "1.1.19-2"
152+
versionCode 1001011903
153+
versionName "1.1.19-3"
154154
}
155155
splits {
156156
abi {

ios/NewExpensify/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</dict>
3232
</array>
3333
<key>CFBundleVersion</key>
34-
<string>1.1.19.2</string>
34+
<string>1.1.19.3</string>
3535
<key>ITSAppUsesNonExemptEncryption</key>
3636
<false/>
3737
<key>LSApplicationQueriesSchemes</key>

ios/NewExpensifyTests/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.1.19.2</string>
22+
<string>1.1.19.3</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": "new.expensify",
3-
"version": "1.1.19-2",
3+
"version": "1.1.19-3",
44
"author": "Expensify, Inc.",
55
"homepage": "https://new.expensify.com",
66
"description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",

0 commit comments

Comments
 (0)