From e032837ff541e734429682f452d8ccd59b9deaf8 Mon Sep 17 00:00:00 2001 From: Nick Cipollina Date: Fri, 17 Jul 2026 11:50:33 -0400 Subject: [PATCH] Trigger PR Build on ready_for_review, not just opened/synchronize/reopened pull_request without an explicit types: list only fires on opened, synchronize, and reopened - not ready_for_review. Combined with the reusable workflow itself skipping draft PRs, a PR opened as draft and later marked ready (with no new commit) would never get built. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/pr-build.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pr-build.yaml b/.github/workflows/pr-build.yaml index 28fb83b..d74403b 100644 --- a/.github/workflows/pr-build.yaml +++ b/.github/workflows/pr-build.yaml @@ -2,6 +2,7 @@ name: PR Build on: pull_request: + types: [opened, synchronize, reopened, ready_for_review] branches: - main workflow_dispatch: