You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The glob expressions in filters is confusing. In particular I found that a filter like this:
filters: |
python:
- python/**
did not match even though this
on:
pull_request:
paths:
- python/**
would match in a github action.
The solution was to use a pattern like - python/**/*.
I suggest that the file globbing should be done like the paths: expressions in github actions, or that this difference should be clearly noted in the documents.
The text was updated successfully, but these errors were encountered:
I suggest that the file globbing should be done like the paths: expressions in github actions, or that this difference should be clearly noted in the documents.
I agree that the glob should match the Github Action's flavor.
The glob expressions in filters is confusing. In particular I found that a filter like this:
did not match even though this
would match in a github action.
The solution was to use a pattern like
- python/**/*
.I suggest that the file globbing should be done like the
paths:
expressions in github actions, or that this difference should be clearly noted in the documents.The text was updated successfully, but these errors were encountered: