Skip to content

Commit

Permalink
CI: Fix coverity label multiline conditional
Browse files Browse the repository at this point in the history
Reviewed-by: Pavel Březina <[email protected]>
  • Loading branch information
justin-stephenson authored and pbrezina committed Jan 22, 2025
1 parent e76849b commit d223213
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ concurrency:
jobs:
coverity:
if: |
${{ github.event_name == 'schedule' }} ||
${{ github.event.label.name == 'coverity' && github.event_name == 'pull_request_target' }}
github.event_name == 'schedule' ||
(github.event.label.name == 'coverity' && github.event_name == 'pull_request_target')
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down

0 comments on commit d223213

Please sign in to comment.