action-add-labels
action-add-labels copied to clipboard
Property 'GitHub' does not exist on type 'typeof import("...
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?
Found root cause in https://github.com/actions/toolkit/commit/4a89cf72de68713d3a465254e90537d8ea5b421e
new github.GitHub(githubToken); is now github.getOctokit(githubToken);