Skip to content

Commit d0883fc

Browse files
committed
Merge branch main into fix-card-holder-name-contrast-91137-91139
2 parents 8b4839f + eb88d38 commit d0883fc

1,020 files changed

Lines changed: 51547 additions & 20447 deletions

File tree

Some content is hidden

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

.bun-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.3.14

.env.example

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ EXPENSIFY_ACCOUNT_ID_RECEIPTS=-1
3535
EXPENSIFY_ACCOUNT_ID_REWARDS=-1
3636
EXPENSIFY_ACCOUNT_ID_STUDENT_AMBASSADOR=-1
3737
EXPENSIFY_ACCOUNT_ID_SVFG=-1
38-
EXPENSIFY_ACCOUNT_ID_MANAGER_MCTEST=-1
3938

4039
FB_API_KEY=YOUR_API_KEY
4140
FB_APP_ID=YOUR_APP_ID

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ This is a checklist for PR authors. Please make sure to complete all tasks and c
9191
- [ ] I verified that comments were added to code that is not self explanatory
9292
- [ ] I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
9393
- [ ] I verified any copy / text shown in the product is localized by adding it to `src/languages/*` files and using the [translation method](https://github.com/Expensify/App/blob/4510fc76bbf5df699a2575bfb49a276af90f3ed7/src/components/LocaleContextProvider.tsx#L80)
94-
- [ ] If any non-english text was added/modified, I used [JaimeGPT](https://chatgpt.com/g/g-2dgOQl5VM-english-to-spanish-translator-aka-jaimegpt) to get English > Spanish translation. I then posted it in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
9594
- [ ] I verified all numbers, amounts, dates and phone numbers shown in the product are using the [localization methods](https://github.com/Expensify/App/blob/4510fc76bbf5df699a2575bfb49a276af90f3ed7/src/components/LocaleContextProvider.tsx#L116-L123)
9695
- [ ] I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
9796
- [ ] I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
@@ -155,4 +154,4 @@ This is a checklist for PR authors. Please make sure to complete all tasks and c
155154

156155
<!-- add screenshots or videos here -->
157156

158-
</details>
157+
</details>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: 'Is Authorized Contributor'
2+
description: 'Checks whether a PR author is authorized to contribute (org member, Contributor+, or linked issue)'
3+
inputs:
4+
PR_NUMBER:
5+
description: Pull request number
6+
required: true
7+
PR_AUTHOR:
8+
description: Pull request author login
9+
required: true
10+
AUTHOR_ASSOCIATION:
11+
description: "Author's association with the repository (MEMBER, OWNER, CONTRIBUTOR, etc.)"
12+
required: true
13+
GITHUB_TOKEN:
14+
description: Auth token for repository API calls
15+
required: true
16+
default: ${{ github.token }}
17+
OS_BOTIFY_TOKEN:
18+
description: OSBotify token for org team membership (read:org)
19+
required: true
20+
outputs:
21+
IS_AUTHORIZED:
22+
description: "'true' if the contributor is authorized, 'false' otherwise"
23+
runs:
24+
using: 'node24'
25+
main: './index.js'

0 commit comments

Comments
 (0)