From 22fb1287798a210cd8c550f578018cd60bb11acd Mon Sep 17 00:00:00 2001 From: Kai Schwarz Date: Wed, 26 Aug 2026 23:18:48 +0200 Subject: [PATCH] ci(workflows): also run on reopened pull requests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit An explicit `types:` list replaces GitHub's default `opened, synchronize, reopened` rather than extending it, so these workflows never ran when a pull request was reopened. Where such a workflow publishes a required status check, that leaves a reopened pull request permanently blocked: the check is absent rather than failed, no run exists to re-run, and the only way out is another push to the head branch. REQUIRED_CHECKS is not yet set for these repositories, so the gap is latent today — it goes live with RSRMID-2991. RSRMID-2998 --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ed0c1a20..4bb997c9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,6 +4,7 @@ on: types: - opened - synchronize + - reopened jobs: tests: