mirror of
https://github.com/softprops/action-gh-release.git
synced 2025-06-29 06:36:02 +00:00
13 lines
393 B
JavaScript
13 lines
393 B
JavaScript
module.exports = octokitRestApiEndpoints;
|
|
|
|
const ROUTES = require("./routes.json");
|
|
|
|
function octokitRestApiEndpoints(octokit) {
|
|
// Aliasing scopes for backward compatibility
|
|
// See https://github.com/octokit/rest.js/pull/1134
|
|
ROUTES.gitdata = ROUTES.git;
|
|
ROUTES.authorization = ROUTES.oauthAuthorizations;
|
|
ROUTES.pullRequests = ROUTES.pulls;
|
|
|
|
octokit.registerEndpoints(ROUTES);
|
|
}
|