Answers for "GitHub Actions: how to target all branches"

0

GitHub Actions: how to target all branches

on:
  push:
    branches:    
      - '*'         # matches every branch that doesn't contain a '/'
      - '*/*'       # matches every branch containing a single '/'
      - '**'        # matches every branch
      - '!master'   # excludes master
Posted by: Guest on April-11-2022

Code answers related to "GitHub Actions: how to target all branches"

Browse Popular Code Answers by Language