From e173cd2c5184af621f15b51de6209befc94e5ea0 Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Tue, 6 Jun 2023 09:11:45 +0100 Subject: [PATCH] Fix pointer --- .github/workflows/release-master.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-master.yml b/.github/workflows/release-master.yml index 7cc2d57802..271cfdb45a 100644 --- a/.github/workflows/release-master.yml +++ b/.github/workflows/release-master.yml @@ -30,7 +30,7 @@ jobs: - name: Fail if tag is not master run: | - if ! git merge-base --is-ancestor ${{ github.sha }} origin/develop; then + if ! git merge-base --is-ancestor ${{ github.sha }} origin/master; then echo "Tag is not in master. This pipeline can only execute tags that are present on the master branch" exit 1 fi