Reputation: 1175
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
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