From c28d553f36c05aa6853e3dd97bc45994f817c931 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Tue, 7 Jul 2026 10:51:32 +0200 Subject: [PATCH 1/3] Trigger RN Build Static Hermes on push to 260318099.0.0-stable The reusable build workflows (build-hermesc-windows/apple/linux, build-android, etc.) only run when the rn-build-hermes.yml orchestrator calls them. That orchestrator's push trigger allowlists specific branches, and this release branch was missing, so pushes to 260318099.0.0-stable never kicked off the Hermes builds. Add it to the allowlist. --- .github/workflows/rn-build-hermes.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/rn-build-hermes.yml b/.github/workflows/rn-build-hermes.yml index 5ab50f81d04..e3abde2752a 100644 --- a/.github/workflows/rn-build-hermes.yml +++ b/.github/workflows/rn-build-hermes.yml @@ -17,6 +17,7 @@ on: push: branches: - 250829098.0.0-stable + - 260318099.0.0-stable - static_h jobs: From 9065f3a075ed2017e68628e065c071929172ebf7 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Tue, 7 Jul 2026 10:57:36 +0200 Subject: [PATCH 2/3] Also run RN Build Static Hermes on PRs targeting 260318099.0.0-stable The push trigger alone means CI only runs after a change lands. Add the release branch to the pull_request base-branch filter so PRs targeting 260318099.0.0-stable are verified before merge. --- .github/workflows/rn-build-hermes.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/rn-build-hermes.yml b/.github/workflows/rn-build-hermes.yml index e3abde2752a..cee4dfd4cbc 100644 --- a/.github/workflows/rn-build-hermes.yml +++ b/.github/workflows/rn-build-hermes.yml @@ -14,6 +14,7 @@ on: pull_request: branches: - static_h + - 260318099.0.0-stable push: branches: - 250829098.0.0-stable From 2b2b6803031970a00adc2f4ae74ff4fb5abbfcfa Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Tue, 7 Jul 2026 11:06:18 +0200 Subject: [PATCH 3/3] Bump hermes-compiler version to 260318099.0.0 Align the package version on the 260318099.0.0-stable release branch with the branch's release train (was still 250829098.0.0). --- npm/hermes-compiler/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npm/hermes-compiler/package.json b/npm/hermes-compiler/package.json index 76e968b2308..e3055ef89aa 100644 --- a/npm/hermes-compiler/package.json +++ b/npm/hermes-compiler/package.json @@ -1,6 +1,6 @@ { "name": "hermes-compiler", - "version": "250829098.0.0", + "version": "260318099.0.0", "private": false, "description": "The hermes compiler CLI used during the React Native build process", "license": "MIT",