Skip to content

Commit 01c4add

Browse files
committedNov 7, 2023
Merge branch 'main' into @kosmydel/lottie-react-native-web-support
2 parents c2cbc47 + da2c79e commit 01c4add

File tree

180 files changed

+3932
-1150
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

180 files changed

+3932
-1150
lines changed
 

‎.github/workflows/cherryPick.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
token: ${{ secrets.OS_BOTIFY_TOKEN }}
4242

4343
- name: Set up git for OSBotify
44+
id: setupGitForOSBotify
4445
uses: Expensify/App/.github/actions/composite/setupGitForOSBotifyApp@8c19d6da4a3d7ce3b15c9cd89a802187d208ecab
4546
with:
4647
GPG_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }}
@@ -119,7 +120,7 @@ jobs:
119120
**Important:** There may be conflicts that GitHub is not able to detect, so please _carefully_ review this pull request before approving."
120121
gh pr edit --add-assignee "${{ github.actor }},${{ steps.getCPMergeCommit.outputs.MERGE_ACTOR }}"
121122
env:
122-
GITHUB_TOKEN: ${{ secrets.OS_BOTIFY_TOKEN }}
123+
GITHUB_TOKEN: ${{ steps.setupGitForOSBotify.outputs.OS_BOTIFY_API_TOKEN }}
123124

124125
- name: "Announces a CP failure in the #announce Slack room"
125126
uses: 8398a7/action-slack@v3

‎.github/workflows/finishReleaseCycle.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
echo "IS_DEPLOYER=false" >> "$GITHUB_OUTPUT"
3535
fi
3636
env:
37-
GITHUB_TOKEN: ${{ secrets.OS_BOTIFY_TOKEN }}
37+
GITHUB_TOKEN: ${{ steps.setupGitForOSBotify.outputs.OS_BOTIFY_API_TOKEN }}
3838

3939
- name: Reopen and comment on issue (not a team member)
4040
if: ${{ !fromJSON(steps.isDeployer.outputs.IS_DEPLOYER) }}
4141
uses: Expensify/App/.github/actions/javascript/reopenIssueWithComment@main
4242
with:
43-
GITHUB_TOKEN: ${{ secrets.OS_BOTIFY_TOKEN }}
43+
GITHUB_TOKEN: ${{ steps.setupGitForOSBotify.outputs.OS_BOTIFY_API_TOKEN }}
4444
ISSUE_NUMBER: ${{ github.event.issue.number }}
4545
COMMENT: |
4646
Sorry, only members of @Expensify/Mobile-Deployers can close deploy checklists.
@@ -51,14 +51,14 @@ jobs:
5151
id: checkDeployBlockers
5252
uses: Expensify/App/.github/actions/javascript/checkDeployBlockers@main
5353
with:
54-
GITHUB_TOKEN: ${{ secrets.OS_BOTIFY_TOKEN }}
54+
GITHUB_TOKEN: ${{ steps.setupGitForOSBotify.outputs.OS_BOTIFY_API_TOKEN }}
5555
ISSUE_NUMBER: ${{ github.event.issue.number }}
5656

5757
- name: Reopen and comment on issue (has blockers)
5858
if: ${{ fromJSON(steps.isDeployer.outputs.IS_DEPLOYER) && fromJSON(steps.checkDeployBlockers.outputs.HAS_DEPLOY_BLOCKERS || 'false') }}
5959
uses: Expensify/App/.github/actions/javascript/reopenIssueWithComment@main
6060
with:
61-
GITHUB_TOKEN: ${{ secrets.OS_BOTIFY_TOKEN }}
61+
GITHUB_TOKEN: ${{ steps.setupGitForOSBotify.outputs.OS_BOTIFY_API_TOKEN }}
6262
ISSUE_NUMBER: ${{ github.event.issue.number }}
6363
COMMENT: |
6464
This issue either has unchecked items or has not yet been marked with the `:shipit:` emoji of approval.

0 commit comments

Comments
 (0)