deliverybot
Version:
Controls and configures deployments using the GitHub API.
9 lines (8 loc) • 379 B
TypeScript
import { Application } from "probot";
import { WatchStore, LockStore } from "./store";
export declare function match(auto: string | undefined, ref: string): boolean;
/**
* Wires up automatic deployments for the `auto_deploy_on` configuration
* variable in the deploy.yml.
*/
export declare function auto(app: Application, lockStore: LockStore, watchStore: WatchStore): void;