diff --git a/.github/workflows/only-allow-pull-requests-to-master-from-develop.yml b/.github/workflows/only-allow-pull-requests-to-master-from-develop.yml index 87b6d79..65bfec0 100644 --- a/.github/workflows/only-allow-pull-requests-to-master-from-develop.yml +++ b/.github/workflows/only-allow-pull-requests-to-master-from-develop.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Check that pull request is from develop run: | - if github.head_ref == 'develop' + if ${{github.head_ref}} == 'develop' then echo Pull request is from develop ✔ exit 0