Skip to content

Commit

Permalink
chore(ci): remove JS handling from workflow conditionals (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Jan 29, 2025
1 parent ef1621e commit 025a53d
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 @@ -17,7 +17,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)
runs-on: ubuntu-24.04
timeout-minutes: 1
steps:
Expand All @@ -39,7 +39,7 @@ jobs:

tests:
name: Django Tests
if: ${{ ! github.event.pull_request.draft }}
if: (! github.event.pull_request.draft)
runs-on: ubuntu-24.04
defaults:
run:
Expand Down

0 comments on commit 025a53d

Please sign in to comment.