UNPKG

@cloudsnorkel/cdk-github-runners

Version:

CDK construct to create GitHub Actions self-hosted runners. Creates ephemeral runners on demand. Easy to deploy and highly customizable.

8 lines (7 loc) 198 B
interface Input { readonly lambdaName: string; readonly repositoryUri: string; readonly repositoryTag: string; } export declare function handler(event: Input): Promise<void>; export {};