Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[EngSys] Ensure all workflow trigger path folders end with "**" #33062

Closed
mikeharder opened this issue Mar 6, 2025 · 0 comments · Fixed by #33063
Closed

[EngSys] Ensure all workflow trigger path folders end with "**" #33062

mikeharder opened this issue Mar 6, 2025 · 0 comments · Fixed by #33063
Assignees

Comments

@mikeharder
Copy link
Member

If a workflow sets a trigger path folder like this, it only includes file in the first level dir.

on:
  pull_request:
    paths:
    - ".github"
    - "eng/tools"

To include all files under the folder recursively, it must end with "**":

on:
  pull_request:
    paths:
    - ".github/**"
    - "eng/tools/**"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant