From 1e5c09fbad6429ba691ad5af514042fba70ccc05 Mon Sep 17 00:00:00 2001 From: "Garen J. Torikian" Date: Thu, 22 Jan 2026 14:59:45 -0500 Subject: [PATCH 1/2] Use correct var/secret names --- .github/workflows/release.yml | 4 ++-- .github/workflows/version-bump.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ac1f3ece..5cecbe77 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml index 5ddb9ca7..8ceb983f 100644 --- a/.github/workflows/version-bump.yml +++ b/.github/workflows/version-bump.yml @@ -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 From 4a93091d5d1858f32f078ea5f09b9ddbbdd92079 Mon Sep 17 00:00:00 2001 From: "Garen J. Torikian" Date: Wed, 4 Feb 2026 15:24:18 -0500 Subject: [PATCH 2/2] Add missing `accepted_user_id` field --- src/workos/types/user_management/invitation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/workos/types/user_management/invitation.py b/src/workos/types/user_management/invitation.py index 9c31e26f..5610e0f5 100644 --- a/src/workos/types/user_management/invitation.py +++ b/src/workos/types/user_management/invitation.py @@ -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