Skip to content

Commit

Permalink
chore(ci): remove JS handling from workflow conditionals (#761)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Jan 29, 2025
1 parent e8799c7 commit 1316b7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions: {}
jobs:
tests:
name: Unit Tests
if: ${{ ! github.event.pull_request.draft }}
if: (! github.event.pull_request.draft)
runs-on: ubuntu-24.04
steps:
- uses: bcgov/[email protected]
Expand All @@ -38,7 +38,7 @@ jobs:
# https://github.com/marketplace/actions/aqua-security-trivy
trivy:
name: Trivy Security Scan
if: ${{ ! github.event.pull_request.draft }}
if: (! github.event.pull_request.draft)
permissions:
security-events: write
runs-on: ubuntu-24.04
Expand Down

0 comments on commit 1316b7f

Please sign in to comment.