Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
fix: authorization header (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahnu authored Nov 8, 2022
1 parent 37b7a56 commit 0df3c14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/commit-watch/src/api/GitHubChecks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class GitHubChecks {
responseType: 'json',
timeout: 5000,
headers: {
Authorization: `token ${this.#config.githubToken}`,
Authorization: `Bearer ${this.#config.githubToken}`,
},
})
this.#lastState = data.state
Expand Down

0 comments on commit 0df3c14

Please sign in to comment.