Fix conditional syntax
diff --git a/.github/workflows/ceph.yml b/.github/workflows/ceph.yml
index b08d646..112379a 100644
--- a/.github/workflows/ceph.yml
+++ b/.github/workflows/ceph.yml
@@ -66,7 +66,7 @@
 
   test:
     runs-on: ubuntu-20.04-16-cores
-    if: !(github.event_name == 'workflow_dispatch' && inputs.debug_enabled)
+    if: github.event_name != 'workflow_dispatch' || !inputs.debug_enabled
     steps:
       - name: Checkout project
         uses: actions/checkout@v3