Skip to content

Commit

Permalink
Fix release notes condition (#3950)
Browse files Browse the repository at this point in the history
Removes an extra exclamation point in the condition for the release
notes that was making the logic the opposite of what we need.
  • Loading branch information
lucacome authored Jun 13, 2023
1 parent 215c4c5 commit cda4a1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cda4a1e

Please sign in to comment.