Add github package

This commit is contained in:
Rachael Sewell
2019-08-03 18:37:07 -07:00
parent d8c14008f1
commit 94d538b14a
11 changed files with 256 additions and 0 deletions

26
node_modules/@actions/github/lib/context.d.ts generated vendored Executable file
View File

@ -0,0 +1,26 @@
import { WebhookPayload } from './interfaces';
export declare class Context {
/**
* Webhook payload object that triggered the workflow
*/
payload: WebhookPayload;
eventName: string;
sha: string;
ref: string;
workflow: string;
action: string;
actor: string;
/**
* Hydrate the context from the environment
*/
constructor();
readonly issue: {
owner: string;
repo: string;
number: number;
};
readonly repo: {
owner: string;
repo: string;
};
}