mirror of
https://forgejo.stefka.eu/jiriks74/create-pull-request.git
synced 2025-01-18 16:01:06 +01:00
[CI] test built
This commit is contained in:
parent
052fc72b41
commit
65a43eae54
2 changed files with 66 additions and 52 deletions
117
dist/index.js
vendored
117
dist/index.js
vendored
|
@ -2910,7 +2910,7 @@ function _objectWithoutProperties(source, excluded) {
|
|||
return target;
|
||||
}
|
||||
|
||||
const VERSION = "3.2.4";
|
||||
const VERSION = "3.2.5";
|
||||
|
||||
class Octokit {
|
||||
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.
|
||||
// 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 universalUserAgent = __nccwpck_require__(30);
|
||||
|
||||
const VERSION = "4.5.8";
|
||||
const VERSION = "4.6.0";
|
||||
|
||||
class GraphqlError extends Error {
|
||||
constructor(request, response) {
|
||||
|
@ -3610,7 +3610,7 @@ exports.withCustomRequest = withCustomRequest;
|
|||
|
||||
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
|
||||
|
@ -3994,15 +3994,24 @@ const Endpoints = {
|
|||
getTemplate: ["GET /gitignore/templates/{name}"]
|
||||
},
|
||||
interactions: {
|
||||
getRestrictionsForAuthenticatedUser: ["GET /user/interaction-limits"],
|
||||
getRestrictionsForOrg: ["GET /orgs/{org}/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"],
|
||||
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"],
|
||||
setRestrictionsForRepo: ["PUT /repos/{owner}/{repo}/interaction-limits"],
|
||||
setRestrictionsForYourPublicRepos: ["PUT /user/interaction-limits"]
|
||||
setRestrictionsForYourPublicRepos: ["PUT /user/interaction-limits", {}, {
|
||||
renamed: ["interactions", "setRestrictionsForAuthenticatedUser"]
|
||||
}]
|
||||
},
|
||||
issues: {
|
||||
addAssignees: ["POST /repos/{owner}/{repo}/issues/{issue_number}/assignees"],
|
||||
|
@ -4142,6 +4151,7 @@ const Endpoints = {
|
|||
},
|
||||
orgs: {
|
||||
blockUser: ["PUT /orgs/{org}/blocks/{username}"],
|
||||
cancelInvitation: ["DELETE /orgs/{org}/invitations/{invitation_id}"],
|
||||
checkBlockedUser: ["GET /orgs/{org}/blocks/{username}"],
|
||||
checkMembershipForUser: ["GET /orgs/{org}/members/{username}"],
|
||||
checkPublicMembershipForUser: ["GET /orgs/{org}/public_members/{username}"],
|
||||
|
@ -4157,6 +4167,7 @@ const Endpoints = {
|
|||
list: ["GET /organizations"],
|
||||
listAppInstallations: ["GET /orgs/{org}/installations"],
|
||||
listBlockedUsers: ["GET /orgs/{org}/blocks"],
|
||||
listFailedInvitations: ["GET /orgs/{org}/failed_invitations"],
|
||||
listForAuthenticatedUser: ["GET /user/orgs"],
|
||||
listForUser: ["GET /users/{username}/orgs"],
|
||||
listInvitationTeams: ["GET /orgs/{org}/invitations/{invitation_id}/teams"],
|
||||
|
@ -4638,6 +4649,7 @@ const Endpoints = {
|
|||
removeUserAccessRestrictions: ["DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users", {}, {
|
||||
mapToData: "users"
|
||||
}],
|
||||
renameBranch: ["POST /repos/{owner}/{repo}/branches/{branch}/rename"],
|
||||
replaceAllTopics: ["PUT /repos/{owner}/{repo}/topics", {
|
||||
mediaType: {
|
||||
previews: ["mercy"]
|
||||
|
@ -4779,7 +4791,7 @@ const Endpoints = {
|
|||
}
|
||||
};
|
||||
|
||||
const VERSION = "4.5.2";
|
||||
const VERSION = "4.10.2";
|
||||
|
||||
function endpointsToMethods(octokit, endpointsMap) {
|
||||
const newMethods = {};
|
||||
|
@ -4963,7 +4975,7 @@ var isPlainObject = __nccwpck_require__(62);
|
|||
var nodeFetch = _interopDefault(__nccwpck_require__(467));
|
||||
var requestError = __nccwpck_require__(537);
|
||||
|
||||
const VERSION = "5.4.12";
|
||||
const VERSION = "5.4.14";
|
||||
|
||||
function getBufferResponse(response) {
|
||||
return response.arrayBuffer();
|
||||
|
@ -5216,51 +5228,51 @@ module.exports.Collection = Hook.Collection
|
|||
/***/ 549:
|
||||
/***/ ((module) => {
|
||||
|
||||
module.exports = addHook
|
||||
module.exports = addHook;
|
||||
|
||||
function addHook (state, kind, name, hook) {
|
||||
var orig = hook
|
||||
function addHook(state, kind, name, hook) {
|
||||
var orig = hook;
|
||||
if (!state.registry[name]) {
|
||||
state.registry[name] = []
|
||||
state.registry[name] = [];
|
||||
}
|
||||
|
||||
if (kind === 'before') {
|
||||
if (kind === "before") {
|
||||
hook = function (method, options) {
|
||||
return Promise.resolve()
|
||||
.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) {
|
||||
var result
|
||||
var result;
|
||||
return Promise.resolve()
|
||||
.then(method.bind(null, options))
|
||||
.then(function (result_) {
|
||||
result = result_
|
||||
return orig(result, options)
|
||||
result = result_;
|
||||
return orig(result, options);
|
||||
})
|
||||
.then(function () {
|
||||
return result
|
||||
})
|
||||
}
|
||||
return result;
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
if (kind === 'error') {
|
||||
if (kind === "error") {
|
||||
hook = function (method, options) {
|
||||
return Promise.resolve()
|
||||
.then(method.bind(null, options))
|
||||
.catch(function (error) {
|
||||
return orig(error, options)
|
||||
})
|
||||
}
|
||||
return orig(error, options);
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
state.registry[name].push({
|
||||
hook: hook,
|
||||
orig: orig
|
||||
})
|
||||
orig: orig,
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
@ -5269,33 +5281,32 @@ function addHook (state, kind, name, hook) {
|
|||
/***/ 670:
|
||||
/***/ ((module) => {
|
||||
|
||||
module.exports = register
|
||||
module.exports = register;
|
||||
|
||||
function register (state, name, method, options) {
|
||||
if (typeof method !== 'function') {
|
||||
throw new Error('method for before hook must be a function')
|
||||
function register(state, name, method, options) {
|
||||
if (typeof method !== "function") {
|
||||
throw new Error("method for before hook must be a function");
|
||||
}
|
||||
|
||||
if (!options) {
|
||||
options = {}
|
||||
options = {};
|
||||
}
|
||||
|
||||
if (Array.isArray(name)) {
|
||||
return name.reverse().reduce(function (callback, name) {
|
||||
return register.bind(null, state, name, callback, options)
|
||||
}, method)()
|
||||
return register.bind(null, state, name, callback, options);
|
||||
}, method)();
|
||||
}
|
||||
|
||||
return Promise.resolve()
|
||||
.then(function () {
|
||||
if (!state.registry[name]) {
|
||||
return method(options)
|
||||
}
|
||||
return Promise.resolve().then(function () {
|
||||
if (!state.registry[name]) {
|
||||
return method(options);
|
||||
}
|
||||
|
||||
return (state.registry[name]).reduce(function (method, registered) {
|
||||
return registered.hook.bind(null, method, options)
|
||||
}, method)()
|
||||
})
|
||||
return state.registry[name].reduce(function (method, registered) {
|
||||
return registered.hook.bind(null, method, options);
|
||||
}, method)();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
@ -5304,22 +5315,24 @@ function register (state, name, method, options) {
|
|||
/***/ 819:
|
||||
/***/ ((module) => {
|
||||
|
||||
module.exports = removeHook
|
||||
module.exports = removeHook;
|
||||
|
||||
function removeHook (state, name, method) {
|
||||
function removeHook(state, name, method) {
|
||||
if (!state.registry[name]) {
|
||||
return
|
||||
return;
|
||||
}
|
||||
|
||||
var index = state.registry[name]
|
||||
.map(function (registered) { return registered.orig })
|
||||
.indexOf(method)
|
||||
.map(function (registered) {
|
||||
return registered.orig;
|
||||
})
|
||||
.indexOf(method);
|
||||
|
||||
if (index === -1) {
|
||||
return
|
||||
return;
|
||||
}
|
||||
|
||||
state.registry[name].splice(index, 1)
|
||||
state.registry[name].splice(index, 1);
|
||||
}
|
||||
|
||||
|
||||
|
|
1
report.txt
Normal file
1
report.txt
Normal file
|
@ -0,0 +1 @@
|
|||
1613007436
|
Loading…
Add table
Add a link
Reference in a new issue