action-add-labels icon indicating copy to clipboard operation
action-add-labels copied to clipboard

Property 'GitHub' does not exist on type 'typeof import("...

Open davetapley opened this issue 4 years ago • 1 comments
trafficstars

I forked the repo to make a version for editing (https://github.com/JEFuller/action-edit-label), but when npm run build I get:

src/main.ts:22:31 - error TS2339: Property 'GitHub' does not exist on type 'typeof import("/home/dave/action-edit-label/node_modules/@actions/github/lib/github")'.

22     const client = new github.GitHub(githubToken);
                                 ~~~~~~

Any ideas?

davetapley avatar Apr 12 '21 20:04 davetapley

Found root cause in https://github.com/actions/toolkit/commit/4a89cf72de68713d3a465254e90537d8ea5b421e

new github.GitHub(githubToken); is now github.getOctokit(githubToken);

davetapley avatar Apr 12 '21 20:04 davetapley