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 3a5a63d commit 9a1beadCopy full SHA for 9a1bead
.github/actions/get-changed-files/get-changed-files.sh
@@ -18,9 +18,8 @@ git fetch --depth=1 origin main
18
git fetch --depth=1 origin ${INPUT_HEAD:-HEAD}
19
20
# Get diff with status information
21
-# Find the merge-base (common ancestor) instead of using origin/main directly
22
echo "__ running git diff with status __"
23
-DIFF_OUTPUT=$(git diff --name-status origin/main...origin/${INPUT_HEAD:-HEAD})
+DIFF_OUTPUT=$(git diff --name-status origin/main origin/${INPUT_HEAD:-HEAD})
24
25
# Function to extract files by pattern from diff output
26
extract_files() {
0 commit comments