singularci
Version:
SingularCI is a DSL transpiler used to generate CI/CD configuration files for existing CI platforms
14 lines • 344 B
TypeScript
export declare type TriggerType = {
branches: string[];
};
export declare type StageObject = {
container?: string;
'runs-on'?: string;
needs?: string[];
steps: string[];
};
export declare type GitHubTriggerObject = {
push?: TriggerType;
pull_request?: TriggerType;
};
//# sourceMappingURL=types.d.ts.map