diff --git a/.github/workflows/check_pr_branch.yml b/.github/workflows/check_pr_branch.yml index 19e67f46e3..7eed5684df 100644 --- a/.github/workflows/check_pr_branch.yml +++ b/.github/workflows/check_pr_branch.yml @@ -6,8 +6,8 @@ jobs: runs-on: ubuntu-latest steps: - name: PRs should not target main - run: | - if [[ "${{ github.base_ref }}" == "main" ]]; then - echo "Pull requests must not be made against main. Please target development instead." - exit 1 - fi + run: | + if [[ "${{ github.base_ref }}" == "main" ]]; then + echo "Pull requests must not be made against main. Please target development instead." + exit 1 + fi