Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 355 Bytes

actions-filters.md

File metadata and controls

11 lines (9 loc) · 355 Bytes

Some events have filters that give you more control over when your workflow should run.

For example, the push event has a branches filter that causes your workflow to run only when a push to a branch that matches the branches filter occurs, instead of when any push occurs.

on:
  push:
    branches:
      - main
      - 'releases/**'