We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cee8520 commit 04ec06aCopy full SHA for 04ec06a
src/git.js
@@ -39,7 +39,8 @@ const getOctokit = (token) => {
39
}
40
})
41
42
- return new Octokit(options)
+ const client = new Octokit(options)
43
+ return client.rest
44
45
46
const init = (repo) => {
src/index.js
@@ -20,7 +20,6 @@ const {
20
21
const run = async () => {
22
const client = Git.getOctokit(GITHUB_TOKEN)
23
- // const client = github.getOctokit(GITHUB_TOKEN)
24
25
const repos = await parseConfig()
26
0 commit comments