Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
id: generate-token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ vars.WORKOS_BOT_APP_ID }}
private-key: ${{ secrets.WORKOS_BOT_PRIVATE_KEY }}
app-id: ${{ vars.SDK_BOT_APP_ID }}
private-key: ${{ secrets.SDK_BOT_PRIVATE_KEY }}

- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
id: generate-token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ vars.WORKOS_BOT_APP_ID }}
private-key: ${{ secrets.WORKOS_BOT_PRIVATE_KEY }}
app-id: ${{ vars.SDK_BOT_APP_ID }}
private-key: ${{ secrets.SDK_BOT_PRIVATE_KEY }}

- name: Checkout
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions src/workos/types/user_management/invitation.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class InvitationCommon(WorkOSModel):
expires_at: str
organization_id: Optional[str] = None
inviter_user_id: Optional[str] = None
accepted_user_id: Optional[str] = None
created_at: str
updated_at: str

Expand Down