From 34eddadd6052b61341df939d6631f4ec85fd1295 Mon Sep 17 00:00:00 2001 From: Chintan Kavathia Date: Mon, 2 Dec 2024 16:57:57 +0530 Subject: [PATCH] test --- .github/workflows/test_and_deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index bb63cc6cf..5336968b5 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -24,7 +24,7 @@ jobs: - name: Check for divergence from master run: | - git fetch origin master + git fetch --verbose origin master || (echo "Git fetch failed"; exit 1) UPSTREAM=${{ github.base_ref }} # Target branch of the pull request (usually master) CURRENT=$(git rev-parse HEAD) # Latest commit on the PR branch MERGED=$(git merge-base HEAD origin/$UPSTREAM) # Common ancestor between HEAD and master