Prepare v1.8.2 release
Some checks failed
PR Checks / check_pr (push) Has been cancelled

This commit is contained in:
Nick Cipollo
2021-03-21 19:49:19 -04:00
parent 9b14e2e2d3
commit 8f5d96dce1
7101 changed files with 1855611 additions and 2 deletions

21
node_modules/@actions/github/lib/utils.d.ts generated vendored Normal file
View File

@@ -0,0 +1,21 @@
import * as Context from './context';
import { Octokit } from '@octokit/core';
import { OctokitOptions } from '@octokit/core/dist-types/types';
export declare const context: Context.Context;
export declare const GitHub: (new (...args: any[]) => {
[x: string]: any;
}) & {
new (...args: any[]): {
[x: string]: any;
};
plugins: any[];
} & typeof Octokit & import("@octokit/core/dist-types/types").Constructor<import("@octokit/plugin-rest-endpoint-methods/dist-types/generated/method-types").RestEndpointMethods & {
paginate: import("@octokit/plugin-paginate-rest").PaginateInterface;
}>;
/**
* Convience function to correctly format Octokit Options to pass into the constructor.
*
* @param token the repo PAT or GITHUB_TOKEN
* @param options other options to set
*/
export declare function getOctokitOptions(token: string, options?: OctokitOptions): OctokitOptions;