GitHub Actions workflow syntax not working as expected

Viewed 399

I have a GitHub workflow that is triggered when files according to the pattern **/abc** are modified / created. As far as I understand it, this means that whenever a:

  1. File that is in some subfolder of a folder that starts with abc or
  2. Any file that starts with abc

is modified, the GH action should be triggered. However, the workflow is even triggered when I e.g. create a file repository/aaa/test_abc

However, to my understanding, the file repository/aaa/test_abc does not correspond to the pattern **/abc**

Do I

  1. Misunderstand GH actions syntax or is it
  2. A Bug in GH actions?
1 Answers
Related