Skip to content

Commit

Permalink
Release v3.2.3 (#157)
Browse files Browse the repository at this point in the history
Co-authored-by: simoneb <actions@users.noreply.github.com>
  • Loading branch information
optic-release-automation[bot] and simoneb authored Oct 2, 2022
1 parent e4d7796 commit e0ca5f3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1075,8 +1075,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
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "optic-release-automation-action",
"version": "3.2.2",
"version": "3.2.3",
"description": "Automate the release process of your npm modules by providing them OTP on-demand.",
"main": "src/index.js",
"scripts": {
Expand Down

0 comments on commit e0ca5f3

Please sign in to comment.