From 6c7a95c7a0bd4ae5d9daba7157a4a00e2a7de195 Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Mon, 20 Oct 2025 12:06:12 -0400 Subject: [PATCH] build: Fix workflow triggers for the Dunder init check. This check was previously only running on PRs to master, which makes it annoying to stack PRs and have all the checks run. Update it so that the check runs on all PRs and on pushes to master. --- .github/workflows/verify-dunder-init.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/verify-dunder-init.yml b/.github/workflows/verify-dunder-init.yml index 2a80d40ce5..a00c5a4261 100644 --- a/.github/workflows/verify-dunder-init.yml +++ b/.github/workflows/verify-dunder-init.yml @@ -2,9 +2,10 @@ name: Verify Dunder __init__.py Files on: pull_request: + merge_group: + push: branches: - master - merge_group: jobs: verify_dunder_init: