From 84d27741d5ca68145177e07f11a01b97f9e5e03c Mon Sep 17 00:00:00 2001 From: Juliusz Sosinowicz Date: Thu, 18 Jun 2026 14:21:35 +0000 Subject: [PATCH] CI: run PIC32MZ simulator test on ready_for_review The draft guard skips the job on draft PRs, but the pull_request trigger used the default types (no ready_for_review), so marking a draft ready did not re-run the job and it stayed skipped. Add the standard types, matching the other workflows, so it re-runs when the PR becomes ready. --- .github/workflows/pic32mz-sim.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pic32mz-sim.yml b/.github/workflows/pic32mz-sim.yml index 8e63e2b938..daa215b739 100644 --- a/.github/workflows/pic32mz-sim.yml +++ b/.github/workflows/pic32mz-sim.yml @@ -5,6 +5,7 @@ on: push: branches: [ 'master', 'main', 'release/**' ] pull_request: + types: [opened, synchronize, reopened, ready_for_review] branches: [ '*' ] # Weekend cron and manual workflow_dispatch refresh the shared ghcr build # cache that PR runs read (cache-to below is gated to those two events).