Skip to content

Commit

Permalink
chore: disable condition
Browse files Browse the repository at this point in the history
  • Loading branch information
katallaxie authored Oct 15, 2024
1 parent 5e02283 commit 41b1511
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- run: make lint

deploy:
if: ${{ github.ref != 'ref/head/dependabot' }}
if: success() && !contains( github.ref, 'dependabot' )
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
checks: write
uses: ./.github/workflows/main.yml
plan:
if: ${{ github.ref != 'ref/head/dependabot' }}
if: success() && !contains( github.ref, 'dependabot' )
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 41b1511

Please sign in to comment.