Skip to content

Commit

Permalink
fix(ci): Fix outdated syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Snoupix committed Feb 2, 2025
1 parent 6bd8ee9 commit 9b11603
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:

jobs:
release_cli:
if: github.event.pull_request.head.ref !~ 'dependabot/.*'
if: "!startsWith(github.event.pull_request.head.ref, 'dependabot')"
strategy:
matrix:
platform:
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
Justfile
# release_gui:
# if: github.event.pull_request.head.ref !~ 'dependabot/.*'
# if: "!startsWith(github.event.pull_request.head.ref, 'dependabot')"
# # Copy of the above strategy
# strategy:
# matrix:
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
# ../Justfile

release_c_lib:
if: github.event.pull_request.head.ref !~ 'dependabot/.*'
if: "!startsWith(github.event.pull_request.head.ref, 'dependabot')"
# Copy of the above strategy
strategy:
matrix:
Expand Down

0 comments on commit 9b11603

Please sign in to comment.