Skip to content

Commit e64865e

Browse files
Merge branch 'main' into migrate-getRate-1
2 parents 89bb40a + 8c3826c commit e64865e

722 files changed

Lines changed: 40465 additions & 18754 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
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)