Interface Config

interface Config {
    branches?: {
        restrictions?: boolean | "manual" | BranchRestrictionOptions;
    };
    labels?: {
        schema?: Label[];
    };
    plugins?: PluginDef<unknown>[];
    pullRequests?: {
        filterOnApply?: string;
    };
}

Properties

branches?: {
    restrictions?: boolean | "manual" | BranchRestrictionOptions;
}
labels?: {
    schema?: Label[];
}
plugins?: PluginDef<unknown>[]
pullRequests?: {
    filterOnApply?: string;
}
""