Skip to content

Commit c39a9b1

Browse files
committed
Fix CI workflow condition syntax
Removed '|| ""' from the if condition which may have been preventing the workflow from running properly.
1 parent ac9c1ca commit c39a9b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
# Skip CI if commit message contains [skip ci]
17-
if: ${{ !contains(github.event.head_commit.message || '', '[skip ci]') }}
17+
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
1818

1919
steps:
2020
- name: Checkout code

0 commit comments

Comments
 (0)