diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index a40b20340fd5552f2303059483682969991583fa..45205aeb211a117495a25dd3b955c6bfbc36bc9f 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -5,7 +5,9 @@ on:
   pull_request:
   push:
     branches:
-      - main
+      - 'main'
+      - 'force_ci/all/**'    # For development, forcing all workflows to run.
+      - 'force_ci/build/**'  # For debugging and/or only forcing this workflow.
 
 jobs:
   # Build the RocksDB C library and cache the result.
diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml
index 2a7c68d950785a68d34d39c21180a767acf9ca6a..1bcd88a204c140a657d64c734360e697a1b64996 100644
--- a/.github/workflows/debian.yml
+++ b/.github/workflows/debian.yml
@@ -4,8 +4,9 @@ on:
   pull_request:
   push:
     branches:
-      - main
-      - workflows/debian  # For debugging.
+      - 'main'
+      - 'force_ci/all/**'     # For development, forcing all workflows to run.
+      - 'force_ci/debian/**'  # For debugging and/or only forcing this workflow.
 
 jobs:
   debian-build: