.github: don't run workflows on queue-dev-* either
diff --git a/.github/workflows/formatting.yml b/.github/workflows/formatting.yml
index 8a48f83..207f849 100644
--- a/.github/workflows/formatting.yml
+++ b/.github/workflows/formatting.yml
@@ -13,7 +13,8 @@
         value: ${{ jobs.formatting.outputs.commit_sha }}
   push:
     branches-ignore:
-      - "queue-main-**"
+      - "queue-main-*"
+      - "queue-dev-*"
   pull_request:
 
 permissions:
diff --git a/.github/workflows/go_test.yml b/.github/workflows/go_test.yml
index 55d2aa3..4d72733 100644
--- a/.github/workflows/go_test.yml
+++ b/.github/workflows/go_test.yml
@@ -3,7 +3,8 @@
   workflow_call:
   push:
     branches-ignore:
-      - "queue-main-**"
+      - "queue-main-*"
+      - "queue-dev-*"
   pull_request:
 jobs:
   test:
diff --git a/.github/workflows/webui_test.yml b/.github/workflows/webui_test.yml
index c667a1b..073877c 100644
--- a/.github/workflows/webui_test.yml
+++ b/.github/workflows/webui_test.yml
@@ -3,7 +3,8 @@
   workflow_call:
   push:
     branches-ignore:
-      - "queue-main-**"
+      - "queue-main-*"
+      - "queue-dev-*"
     paths:
       - "webui/**"
   pull_request: