Updating our actions to specify that all paths will trigger the action.
Adding a filter step that helps avoid the issue described in this issue. TLDR: rebase commits end up re-triggering actions even if the PR being rebased didn't change the specified paths.
This should help our users not run into the same issue we ran into.
One thing that is not good about this approach is that the check_paths step runs no matter what. Ideally we could skip it in the default case of "**" (all paths) triggering the action.
This should help our users not run into the same issue we ran into.
One thing that is not good about this approach is that the
check_paths
step runs no matter what. Ideally we could skip it in the default case of "**" (all paths) triggering the action.