Skip to content

Commit 8465d38

Browse files
committed
Undo the change that triggered windows-build-skip condition
1 parent 215de19 commit 8465d38

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/reusable-change-detection.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ jobs:
134134
135135
CHANGED_FILES=$(git diff --name-only "origin/$GITHUB_BASE_REF..")
136136
# Check if changes are ONLY in configure/Makefile files
137-
if echo "$CHANGED_FILES" | grep -v "build.yml\|reusable-change-detection.yml" | grep -qE '^(configure.*|Makefile.*|.*\.m4)$' && \
138-
! echo "$CHANGED_FILES" | grep -v "build.yml\|reusable-change-detection.yml" | grep -qvE '^(configure.*|Makefile.*|.*\.m4)$'; then
137+
if echo "$CHANGED_FILES" | grep -qE '^(configure.*|Makefile.*|.*\.m4)$' && \
138+
! echo "$CHANGED_FILES" | grep -qvE '^(configure.*|Makefile.*|.*\.m4)$'; then
139139
# Only configure/Makefile files changed, skip Windows CI
140140
echo "run-windows=false" >> "$GITHUB_OUTPUT"
141141
else

configure

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)