Skip to content

Commit 8241569

Browse files
Release v3.3.2 (#281)
Co-authored-by: simoneb <actions@users.noreply.github.com>
1 parent 1b6fe43 commit 8241569

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

dist/index.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1721,8 +1721,9 @@ exports.context = new Context.Context();
17211721
* @param token the repo PAT or GITHUB_TOKEN
17221722
* @param options other options to set
17231723
*/
1724-
function getOctokit(token, options) {
1725-
return new utils_1.GitHub(utils_1.getOctokitOptions(token, options));
1724+
function getOctokit(token, options, ...additionalPlugins) {
1725+
const GitHubWithPlugins = utils_1.GitHub.plugin(...additionalPlugins);
1726+
return new GitHubWithPlugins(utils_1.getOctokitOptions(token, options));
17261727
}
17271728
exports.getOctokit = getOctokit;
17281729
//# sourceMappingURL=github.js.map
@@ -11086,7 +11087,7 @@ module.exports = JSON.parse('[[[0,44],"disallowed_STD3_valid"],[[45,46],"valid"]
1108611087
/***/ ((module) => {
1108711088

1108811089
"use strict";
11089-
module.exports = JSON.parse('{"name":"github-action-merge-dependabot","version":"3.3.1","description":"A GitHub action to automatically merge and approve Dependabot pull requests","main":"src/index.js","scripts":{"build":"ncc build src/index.js","lint":"eslint .","test":"tap test/**.test.js","prepare":"husky install"},"author":{"name":"Salman Mitha","email":"SalmanMitha@gmail.com"},"contributors":["Simone Busoli <simone.busoli@nearform.com>"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/fastify/github-action-merge-dependabot.git"},"bugs":{"url":"https://github.com/fastify/github-action-merge-dependabot/issues"},"homepage":"https://github.com/fastify/github-action-merge-dependabot#readme","dependencies":{"@actions/core":"^1.9.1","@actions/github":"^5.0.3","actions-toolkit":"github:nearform/actions-toolkit","gitdiff-parser":"^0.2.2","semver":"^7.3.7"},"devDependencies":{"@vercel/ncc":"^0.34.0","eslint":"^8.23.1","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","husky":"^8.0.1","prettier":"^2.7.1","proxyquire":"^2.1.3","sinon":"^14.0.0","tap":"^16.3.0"}}');
11090+
module.exports = JSON.parse('{"name":"github-action-merge-dependabot","version":"3.3.2","description":"A GitHub action to automatically merge and approve Dependabot pull requests","main":"src/index.js","scripts":{"build":"ncc build src/index.js","lint":"eslint .","test":"tap test/**.test.js","prepare":"husky install"},"author":{"name":"Salman Mitha","email":"SalmanMitha@gmail.com"},"contributors":["Simone Busoli <simone.busoli@nearform.com>"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/fastify/github-action-merge-dependabot.git"},"bugs":{"url":"https://github.com/fastify/github-action-merge-dependabot/issues"},"homepage":"https://github.com/fastify/github-action-merge-dependabot#readme","dependencies":{"@actions/core":"^1.9.1","@actions/github":"^5.1.0","actions-toolkit":"github:nearform/actions-toolkit","gitdiff-parser":"^0.2.2","semver":"^7.3.7"},"devDependencies":{"@vercel/ncc":"^0.34.0","eslint":"^8.24.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","husky":"^8.0.1","prettier":"^2.7.1","proxyquire":"^2.1.3","sinon":"^14.0.0","tap":"^16.3.0"}}');
1109011091

1109111092
/***/ })
1109211093

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "github-action-merge-dependabot",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"description": "A GitHub action to automatically merge and approve Dependabot pull requests",
55
"main": "src/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)