Procházet zdrojové kódy

Changes github auth

main
Eric Amodio před 4 roky
rodič
revize
6b363b4d23
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      src/github/github.ts

+ 2
- 2
src/github/github.ts Zobrazit soubor

@ -61,7 +61,7 @@ export class GitHubApi {
};
}>(query, {
...variables,
headers: { authorization: `token ${token}` },
headers: { authorization: `Bearer ${token}` },
...options,
});
const pr = rsp?.repository?.object?.associatedPullRequests?.nodes?.[0];
@ -132,7 +132,7 @@ export class GitHubApi {
const rsp = await graphql<{ repository?: { issueOrPullRequest?: GitHubIssueOrPullRequest } }>(query, {
...variables,
headers: { authorization: `token ${token}` },
headers: { authorization: `Bearer ${token}` },
...options,
});
const issue = rsp?.repository?.issueOrPullRequest;

Načítá se…
Zrušit
Uložit