We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b759c0e commit c825703Copy full SHA for c825703
src/commands/trigger-workflows-for-all-modified.yml
@@ -171,9 +171,9 @@ steps:
171
172
get_modified_files_for_commit_regex() {
173
if [[ "$SEARCH_MODE" == "grep" ]]; then
174
- FILES_MODIFIED=$(git diff --name-only HEAD HEAD^@ | grep $FINAL_GREP_FLAGS $1)
+ FILES_MODIFIED=$(git diff --name-only HEAD^@ | grep $FINAL_GREP_FLAGS $1)
175
else
176
- FILES_MODIFIED=$(git diff --name-only HEAD HEAD^@ | perl -nle "print if m{$1}")
+ FILES_MODIFIED=$(git diff --name-only HEAD^@ | perl -nle "print if m{$1}")
177
fi
178
}
179
0 commit comments