Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aljazerzen committed Jan 19, 2024
1 parent f1622ab commit 621ebc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pull-request-meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
exit 0
fi
git diff --quiet \
if git diff --quiet \
${{ github.event.pull_request.base.sha }} \
${{ github.event.pull_request.head.sha }} -- postgres/ || echo 'no'
if [ $? != 0 ]; then
${{ github.event.pull_request.head.sha }} -- postgres/ ; then
echo "postgres/ submodule has been changed,"\
"but PR title does not indicate that"
echo "(it should start with '$required_prefix')"
Expand Down

0 comments on commit 621ebc8

Please sign in to comment.