Browse Source

Enable running tests & release artifacts on merge queue. (#15244)

Patrick Cloke 1 year ago
parent
commit
121fce7500
3 changed files with 5 additions and 1 deletions
  1. 3 1
      .github/workflows/release-artifacts.yml
  2. 1 0
      .github/workflows/tests.yml
  3. 1 0
      changelog.d/15244.misc

+ 3 - 1
.github/workflows/release-artifacts.yml

@@ -4,13 +4,15 @@ name: Build release artifacts
 
 on:
   # we build on PRs and develop to (hopefully) get early warning
-  # of things breaking (but only build one set of debs)
+  # of things breaking (but only build one set of debs). PRs skip
+  # building wheels on macOS & ARM.
   pull_request:
   push:
     branches: ["develop", "release-*"]
 
     # we do the full build on tags.
     tags: ["v*"]
+  merge_group:
   workflow_dispatch:
 
 concurrency:

+ 1 - 0
.github/workflows/tests.yml

@@ -4,6 +4,7 @@ on:
   push:
     branches: ["develop", "release-*"]
   pull_request:
+  merge_group:
   workflow_dispatch:
 
 concurrency:

+ 1 - 0
changelog.d/15244.misc

@@ -0,0 +1 @@
+Configure GitHub Actions for merge queues.