Joe
Joe

Reputation: 1175

How do you trigger a push when a specific directory in a branch gets an update?

I want my workflow to trigger on a push only if there are changes made to a specific directory. Is this possible, what am I missing? I tried doing something like what you see below, but it didn't fire the trigger.

name: ABC

on:
  push:
    branches:  [master/my-directory]
  pull_request:
    branches: [ master ]

Upvotes: 54

Views: 27258

Answers (1)

Benjamin W.
Benjamin W.

Reputation: 52162

push has a property called paths:

name: ABC
on:
  push:
    branches:
      - master
    paths:
      - my-directory/**

This will only trigger on pushes to the master branch with changes in the my-directory directory tree. See the filter pattern cheat sheet for all possible filter patterns.

Upvotes: 110

Related Questions