From cda4a1ed6d1f65594285fc934b3fc7f264784c1f Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Tue, 13 Jun 2023 08:57:49 -0700 Subject: [PATCH] Fix release notes condition (#3950) Removes an extra exclamation point in the condition for the release notes that was making the logic the opposite of what we need. --- .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 732017a406..cb65f58f12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,7 +83,7 @@ jobs: release: runs-on: ubuntu-22.04 needs: [checks, unit-tests] - if: ${{ github.event_name == 'push' && ! github.ref != 'refs/heads/main' }} + if: ${{ github.event_name == 'push' && github.ref != 'refs/heads/main' }} steps: - name: Checkout Repository uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3