Skip to content

Commit

Permalink
[actions] Build of 78a9d32
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Sep 30, 2022
1 parent 80f9f54 commit 11c7110
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions typescript/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1613,8 +1613,9 @@ exports.context = new Context.Context();
* @param token the repo PAT or GITHUB_TOKEN
* @param options other options to set
*/
function getOctokit(token, options) {
return new utils_1.GitHub(utils_1.getOctokitOptions(token, options));
function getOctokit(token, options, ...additionalPlugins) {
const GitHubWithPlugins = utils_1.GitHub.plugin(...additionalPlugins);
return new GitHubWithPlugins(utils_1.getOctokitOptions(token, options));
}
exports.getOctokit = getOctokit;
//# sourceMappingURL=github.js.map
Expand Down
2 changes: 1 addition & 1 deletion typescript/dist/index.js.map

Large diffs are not rendered by default.

0 comments on commit 11c7110

Please sign in to comment.