'Github Actions - 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 ]


Solution 1:[1]

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.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1