Skip to content

Commit

Permalink
Fix conditional syntax in dependency update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
klaasnicolaas committed Nov 25, 2024
1 parent 14d76be commit 74533f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/sync-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
jobs:
update-dependencies:
runs-on: ubuntu-latest
if: ${{ github.head_ref == 'renovate/lock-file-maintenance' or github.event_name == 'workflow_dispatch' }}
if: ${{ github.head_ref == 'renovate/lock-file-maintenance' || github.event_name == 'workflow_dispatch' }}
steps:
- name: ⤵️ Checkout Code
uses: actions/[email protected]
Expand Down

0 comments on commit 74533f2

Please sign in to comment.