1
0
Fork 0
mirror of synced 2024-06-30 20:10:54 +12:00

Use current sha

This commit is contained in:
adrinr 2023-04-18 11:17:12 +01:00
parent a6af18daae
commit 00698d48d6

View file

@ -98,7 +98,8 @@ jobs:
run: |
cd packages/pro
git fetch
if ! git merge-base --is-ancestor $(git log -n 1 --pretty=format:%H) origin/chore/pro_as_submodule; then
echo $GITHUB_SHA
if ! git merge-base --is-ancestor $GITHUB_SHA origin/chore/pro_as_submodule; then
echo "Current commit has not been merged to develop"
exit 1
else