Skip to content

Commit

Permalink
Merge branch 'main' into feature/add-server-side-session-storage
Browse files Browse the repository at this point in the history
  • Loading branch information
atinux authored Feb 4, 2025
2 parents 7a30d6b + 01367c2 commit d59daf5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- run: corepack enable
- run: npm i -g --force corepack && corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- run: corepack enable
- run: npm i -g --force corepack && corepack enable
- uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
with:
node-version: 20
Expand Down
1 change: 1 addition & 0 deletions src/runtime/server/lib/oauth/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ export function defineOAuthGitHubEventHandler({ config, onSuccess, onError }: OA
return onError(event, error)
}
user.email = primaryEmail.email
user.email_verified = primaryEmail.verified
}

return onSuccess(event, {
Expand Down

0 comments on commit d59daf5

Please sign in to comment.