Skip to content

Commit

Permalink
Update update_index.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ccbaumler authored Feb 22, 2024
1 parent d6557a8 commit 86d6900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update_index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
$diff = git diff --name-only HEAD^ HEAD
# Check if a file under docs/ or with the .md extension has changed (added, modified, deleted)
$SourceDiff = $diff | Where-Object { $_ -match '^docs/' }
$SourceDiff = $diff | Where-Object { $_ -match '^docs/' -or $_ -match '.md$' }
$HasDiff = $SourceDiff.Length -gt 0
# Set the output named "docs_changed"
Expand Down

0 comments on commit 86d6900

Please sign in to comment.