import { components as OctoOpenApiTypes } from '@octokit/openapi-types'; export type RepoMetadata = Pick; export interface Payload { base_ref: string; number: number; pull_request: { head: { sha: string; }; base: { ref: string; }; }; repository: { default_branch?: string; private?: boolean; }; } export interface RunnerContext { name: string; actor: string; eventName: string; job: string; payload: Partial; ref: string; runId: number; runNumber: number; repoUrl: string; sha: string; } //# sourceMappingURL=interfaces.d.ts.map