Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/actionify/src/types.ts>PushOptions

Create and manage your GitHub workflows with TypeScript and Deno.
Latest
interface PushOptions
import { type PushOptions } from "https://deno.land/x/actionify@0.3.0/src/types.ts";

Properties

optional
branches: readonly string[]

When using the push and pull_request events, you can configure a workflow to run on specific branches or tags. For a pull_request event, only branches and tags on the base are evaluated. If you define only tags or only branches, the workflow won't run for events affecting the undefined Git ref.

optional
branches-ignore: readonly string[]
optional
tags: readonly string[]

When using the push and pull_request events, you can configure a workflow to run on specific branches or tags. For a pull_request event, only branches and tags on the base are evaluated. If you define only tags or only branches, the workflow won't run for events affecting the undefined Git ref.

optional
tags-ignore: readonly string[]
optional
paths: readonly string[]

When using the push and pull_request events, you can configure a workflow to run when at least one file does not match paths-ignore or at least one modified file matches the configured paths. Path filters are not evaluated for pushes to tags.

optional
paths-ignore: readonly string[]