[CI] test built

This commit is contained in:
actions-bot 2021-02-11 01:37:17 +00:00 committed by GitHub
parent 052fc72b41
commit 65a43eae54
2 changed files with 66 additions and 52 deletions

117
dist/index.js vendored
View file

@ -2910,7 +2910,7 @@ function _objectWithoutProperties(source, excluded) {
return target; return target;
} }
const VERSION = "3.2.4"; const VERSION = "3.2.5";
class Octokit { class Octokit {
constructor(options = {}) { constructor(options = {}) {
@ -3414,7 +3414,7 @@ function withDefaults(oldDefaults, newDefaults) {
}); });
} }
const VERSION = "6.0.10"; const VERSION = "6.0.11";
const userAgent = `octokit-endpoint.js/${VERSION} ${universalUserAgent.getUserAgent()}`; // DEFAULTS has all properties set that EndpointOptions has, except url. const userAgent = `octokit-endpoint.js/${VERSION} ${universalUserAgent.getUserAgent()}`; // DEFAULTS has all properties set that EndpointOptions has, except url.
// So we use RequestParameters and add method as additional required property. // So we use RequestParameters and add method as additional required property.
@ -3497,7 +3497,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
var request = __nccwpck_require__(234); var request = __nccwpck_require__(234);
var universalUserAgent = __nccwpck_require__(30); var universalUserAgent = __nccwpck_require__(30);
const VERSION = "4.5.8"; const VERSION = "4.6.0";
class GraphqlError extends Error { class GraphqlError extends Error {
constructor(request, response) { constructor(request, response) {
@ -3610,7 +3610,7 @@ exports.withCustomRequest = withCustomRequest;
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
const VERSION = "2.8.0"; const VERSION = "2.9.1";
/** /**
* Some list response that can be paginated have a different response structure * Some list response that can be paginated have a different response structure
@ -3994,15 +3994,24 @@ const Endpoints = {
getTemplate: ["GET /gitignore/templates/{name}"] getTemplate: ["GET /gitignore/templates/{name}"]
}, },
interactions: { interactions: {
getRestrictionsForAuthenticatedUser: ["GET /user/interaction-limits"],
getRestrictionsForOrg: ["GET /orgs/{org}/interaction-limits"], getRestrictionsForOrg: ["GET /orgs/{org}/interaction-limits"],
getRestrictionsForRepo: ["GET /repos/{owner}/{repo}/interaction-limits"], getRestrictionsForRepo: ["GET /repos/{owner}/{repo}/interaction-limits"],
getRestrictionsForYourPublicRepos: ["GET /user/interaction-limits"], getRestrictionsForYourPublicRepos: ["GET /user/interaction-limits", {}, {
renamed: ["interactions", "getRestrictionsForAuthenticatedUser"]
}],
removeRestrictionsForAuthenticatedUser: ["DELETE /user/interaction-limits"],
removeRestrictionsForOrg: ["DELETE /orgs/{org}/interaction-limits"], removeRestrictionsForOrg: ["DELETE /orgs/{org}/interaction-limits"],
removeRestrictionsForRepo: ["DELETE /repos/{owner}/{repo}/interaction-limits"], removeRestrictionsForRepo: ["DELETE /repos/{owner}/{repo}/interaction-limits"],
removeRestrictionsForYourPublicRepos: ["DELETE /user/interaction-limits"], removeRestrictionsForYourPublicRepos: ["DELETE /user/interaction-limits", {}, {
renamed: ["interactions", "removeRestrictionsForAuthenticatedUser"]
}],
setRestrictionsForAuthenticatedUser: ["PUT /user/interaction-limits"],
setRestrictionsForOrg: ["PUT /orgs/{org}/interaction-limits"], setRestrictionsForOrg: ["PUT /orgs/{org}/interaction-limits"],
setRestrictionsForRepo: ["PUT /repos/{owner}/{repo}/interaction-limits"], setRestrictionsForRepo: ["PUT /repos/{owner}/{repo}/interaction-limits"],
setRestrictionsForYourPublicRepos: ["PUT /user/interaction-limits"] setRestrictionsForYourPublicRepos: ["PUT /user/interaction-limits", {}, {
renamed: ["interactions", "setRestrictionsForAuthenticatedUser"]
}]
}, },
issues: { issues: {
addAssignees: ["POST /repos/{owner}/{repo}/issues/{issue_number}/assignees"], addAssignees: ["POST /repos/{owner}/{repo}/issues/{issue_number}/assignees"],
@ -4142,6 +4151,7 @@ const Endpoints = {
}, },
orgs: { orgs: {
blockUser: ["PUT /orgs/{org}/blocks/{username}"], blockUser: ["PUT /orgs/{org}/blocks/{username}"],
cancelInvitation: ["DELETE /orgs/{org}/invitations/{invitation_id}"],
checkBlockedUser: ["GET /orgs/{org}/blocks/{username}"], checkBlockedUser: ["GET /orgs/{org}/blocks/{username}"],
checkMembershipForUser: ["GET /orgs/{org}/members/{username}"], checkMembershipForUser: ["GET /orgs/{org}/members/{username}"],
checkPublicMembershipForUser: ["GET /orgs/{org}/public_members/{username}"], checkPublicMembershipForUser: ["GET /orgs/{org}/public_members/{username}"],
@ -4157,6 +4167,7 @@ const Endpoints = {
list: ["GET /organizations"], list: ["GET /organizations"],
listAppInstallations: ["GET /orgs/{org}/installations"], listAppInstallations: ["GET /orgs/{org}/installations"],
listBlockedUsers: ["GET /orgs/{org}/blocks"], listBlockedUsers: ["GET /orgs/{org}/blocks"],
listFailedInvitations: ["GET /orgs/{org}/failed_invitations"],
listForAuthenticatedUser: ["GET /user/orgs"], listForAuthenticatedUser: ["GET /user/orgs"],
listForUser: ["GET /users/{username}/orgs"], listForUser: ["GET /users/{username}/orgs"],
listInvitationTeams: ["GET /orgs/{org}/invitations/{invitation_id}/teams"], listInvitationTeams: ["GET /orgs/{org}/invitations/{invitation_id}/teams"],
@ -4638,6 +4649,7 @@ const Endpoints = {
removeUserAccessRestrictions: ["DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users", {}, { removeUserAccessRestrictions: ["DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users", {}, {
mapToData: "users" mapToData: "users"
}], }],
renameBranch: ["POST /repos/{owner}/{repo}/branches/{branch}/rename"],
replaceAllTopics: ["PUT /repos/{owner}/{repo}/topics", { replaceAllTopics: ["PUT /repos/{owner}/{repo}/topics", {
mediaType: { mediaType: {
previews: ["mercy"] previews: ["mercy"]
@ -4779,7 +4791,7 @@ const Endpoints = {
} }
}; };
const VERSION = "4.5.2"; const VERSION = "4.10.2";
function endpointsToMethods(octokit, endpointsMap) { function endpointsToMethods(octokit, endpointsMap) {
const newMethods = {}; const newMethods = {};
@ -4963,7 +4975,7 @@ var isPlainObject = __nccwpck_require__(62);
var nodeFetch = _interopDefault(__nccwpck_require__(467)); var nodeFetch = _interopDefault(__nccwpck_require__(467));
var requestError = __nccwpck_require__(537); var requestError = __nccwpck_require__(537);
const VERSION = "5.4.12"; const VERSION = "5.4.14";
function getBufferResponse(response) { function getBufferResponse(response) {
return response.arrayBuffer(); return response.arrayBuffer();
@ -5216,51 +5228,51 @@ module.exports.Collection = Hook.Collection
/***/ 549: /***/ 549:
/***/ ((module) => { /***/ ((module) => {
module.exports = addHook module.exports = addHook;
function addHook (state, kind, name, hook) { function addHook(state, kind, name, hook) {
var orig = hook var orig = hook;
if (!state.registry[name]) { if (!state.registry[name]) {
state.registry[name] = [] state.registry[name] = [];
} }
if (kind === 'before') { if (kind === "before") {
hook = function (method, options) { hook = function (method, options) {
return Promise.resolve() return Promise.resolve()
.then(orig.bind(null, options)) .then(orig.bind(null, options))
.then(method.bind(null, options)) .then(method.bind(null, options));
} };
} }
if (kind === 'after') { if (kind === "after") {
hook = function (method, options) { hook = function (method, options) {
var result var result;
return Promise.resolve() return Promise.resolve()
.then(method.bind(null, options)) .then(method.bind(null, options))
.then(function (result_) { .then(function (result_) {
result = result_ result = result_;
return orig(result, options) return orig(result, options);
}) })
.then(function () { .then(function () {
return result return result;
}) });
} };
} }
if (kind === 'error') { if (kind === "error") {
hook = function (method, options) { hook = function (method, options) {
return Promise.resolve() return Promise.resolve()
.then(method.bind(null, options)) .then(method.bind(null, options))
.catch(function (error) { .catch(function (error) {
return orig(error, options) return orig(error, options);
}) });
} };
} }
state.registry[name].push({ state.registry[name].push({
hook: hook, hook: hook,
orig: orig orig: orig,
}) });
} }
@ -5269,33 +5281,32 @@ function addHook (state, kind, name, hook) {
/***/ 670: /***/ 670:
/***/ ((module) => { /***/ ((module) => {
module.exports = register module.exports = register;
function register (state, name, method, options) { function register(state, name, method, options) {
if (typeof method !== 'function') { if (typeof method !== "function") {
throw new Error('method for before hook must be a function') throw new Error("method for before hook must be a function");
} }
if (!options) { if (!options) {
options = {} options = {};
} }
if (Array.isArray(name)) { if (Array.isArray(name)) {
return name.reverse().reduce(function (callback, name) { return name.reverse().reduce(function (callback, name) {
return register.bind(null, state, name, callback, options) return register.bind(null, state, name, callback, options);
}, method)() }, method)();
} }
return Promise.resolve() return Promise.resolve().then(function () {
.then(function () { if (!state.registry[name]) {
if (!state.registry[name]) { return method(options);
return method(options) }
}
return (state.registry[name]).reduce(function (method, registered) { return state.registry[name].reduce(function (method, registered) {
return registered.hook.bind(null, method, options) return registered.hook.bind(null, method, options);
}, method)() }, method)();
}) });
} }
@ -5304,22 +5315,24 @@ function register (state, name, method, options) {
/***/ 819: /***/ 819:
/***/ ((module) => { /***/ ((module) => {
module.exports = removeHook module.exports = removeHook;
function removeHook (state, name, method) { function removeHook(state, name, method) {
if (!state.registry[name]) { if (!state.registry[name]) {
return return;
} }
var index = state.registry[name] var index = state.registry[name]
.map(function (registered) { return registered.orig }) .map(function (registered) {
.indexOf(method) return registered.orig;
})
.indexOf(method);
if (index === -1) { if (index === -1) {
return return;
} }
state.registry[name].splice(index, 1) state.registry[name].splice(index, 1);
} }

1
report.txt Normal file
View file

@ -0,0 +1 @@
1613007436