Skip to content

Commit

Permalink
Preparing for release 5.0.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
colincasey committed May 16, 2024
1 parent 5d19d46 commit 0a207e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,14 @@ jobs:
- name: Ensure API and doc changes have been committed
run: |
git add --renormalize .
if (( "$(git diff --ignore-space-at-eol --ignore-cr-at-eol | wc -l)" != 0 )); then
if (( "$(git diff HEAD --ignore-space-at-eol --ignore-cr-at-eol | wc -l)" != 0 )); then
cat << EOF >> $GITHUB_STEP_SUMMARY
### Detected uncommitted changes
\`\`\`shell
$(git diff)
$(git diff HEAD)
\`\`\`
EOF
git diff
git diff HEAD
exit 1
fi

0 comments on commit 0a207e1

Please sign in to comment.