Add workflow_dispatch trigger to CI workflow
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 9ccf4ef..eaeeb8b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -62,6 +62,7 @@
 on:
   pull_request:
   merge_group:
+  workflow_dispatch:
   # We run on push, even though the commit is the same as when we ran in merge_group.
   # This allows the cache to be primed.
   # See https://github.com/orgs/community/discussions/66430