From 5a9dcb7ce2ff4d573b145aa9f7480fcfd1a7968f Mon Sep 17 00:00:00 2001 From: Shawn Carey Date: Tue, 24 Sep 2024 16:59:41 -0400 Subject: [PATCH] fix paren placement in draft-release conditional --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index dea6845..7ddd286 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -222,7 +222,7 @@ jobs: draft-release: runs-on: ubuntu-latest needs: [ build ] - if: github.event_name == 'push' && github.ref == ('refs/heads/main' || github.ref == 'refs/heads/alpha') + if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/alpha') steps: - name: Checkout Project uses: actions/checkout@v4