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 49b3859 commit 41efe71Copy full SHA for 41efe71
.github/workflows/premerge.yaml
@@ -19,8 +19,8 @@ jobs:
19
fetch-depth: 2
20
- name: Build and Test
21
run: |
22
- ${MODIFIED_FILES:=$(git diff --name-only HEAD~1...HEAD)}
23
- echo $MODIFIED_FILES
24
- modified_dirs=$(echo "$MODIFIED_FILES" | cut -d'/' -f1 | sort -u)
+ modified_files=$(git diff --name-only HEAD~1...HEAD)
+ echo $modified_files
+ modified_dirs=$(echo "$modified_files" | cut -d'/' -f1 | sort -u)
25
echo "$modified_dirs"
26
0 commit comments