Skip to main content
Module

x/cicada/lib.ts>TriggerOptions

Write CI/CD pipelines using TypeScript
Latest
interface TriggerOptions
import { type TriggerOptions } from "https://deno.land/x/cicada@v0.1.50/lib.ts";

The options for configuring a pipeline's trigger event.

Properties

optional
push: Branch[] | "all"

Which branches when pushed to should trigger the pipeline.

Use 'all' if you'd like for any branch to trigger the pipeline.

optional
pullRequest: Branch[] | "all"

Which branches when a pull request is opened should trigger the pipeline.

Use 'all' if you'd like for any branch to trigger the pipeline.