Skip to content

Commit

Permalink
[ci] fix stray condition
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdymercury authored Nov 13, 2024
1 parent fc561a9 commit d5f3ef3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/root-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
$diff = git diff --name-only HEAD^ HEAD
# Check if a file under interpreter/ has changed
$SourceDiff = $diff | Where-Object { $_ -match '^interpreter/' -or $_ -match '.md$' }
$SourceDiff = $diff | Where-Object { $_ -match '^interpreter/' }
$HasDiff = $SourceDiff.Length -gt 0
# Set the output named "interpreter_changed"
Expand Down

0 comments on commit d5f3ef3

Please sign in to comment.