From 23e4d9f7ebd41eabd6ba530912dc052668f57d76 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sun, 11 Jan 2026 23:54:13 -0500 Subject: [PATCH 1/4] Add base branch patterns for feature and nightly --- .github/renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index e5eb94ee..f77b1276 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -7,7 +7,8 @@ "helpers:pinGitHubActionDigests" ], "baseBranchPatterns": [ - "development" + "feature/**", + "nightly" ], "timezone": "UTC", "dependencyDashboard": true, From 2b259ff4a68fb8a620146a105a917c99ea24ce96 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sun, 11 Jan 2026 23:55:47 -0500 Subject: [PATCH 2/4] Update base branch patterns in renovate.json --- .github/renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index f77b1276..a61f640a 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -7,7 +7,7 @@ "helpers:pinGitHubActionDigests" ], "baseBranchPatterns": [ - "feature/**", + "feature/beta_release", "nightly" ], "timezone": "UTC", From cb877af9740d4cf8aa04459d05f77d6a78df0c33 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sun, 11 Jan 2026 23:59:45 -0500 Subject: [PATCH 3/4] Fix base branch pattern for Renovate configuration --- .github/renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index a61f640a..4694b407 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -7,7 +7,7 @@ "helpers:pinGitHubActionDigests" ], "baseBranchPatterns": [ - "feature/beta_release", + "feature/beta-release", "nightly" ], "timezone": "UTC", From 22a23da6e9409e4b36d8ac0319d8457c4935deca Mon Sep 17 00:00:00 2001 From: Jeremy Date: Mon, 12 Jan 2026 00:19:19 -0500 Subject: [PATCH 4/4] Add nightly branch to propagate changes workflow --- .github/workflows/propagate-changes.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/propagate-changes.yml b/.github/workflows/propagate-changes.yml index e2d5c080..589c41f1 100644 --- a/.github/workflows/propagate-changes.yml +++ b/.github/workflows/propagate-changes.yml @@ -5,6 +5,7 @@ on: branches: - main - development + - nightly concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -145,9 +146,11 @@ jobs: if (currentBranch === 'main') { // Main -> Development - await createPR('main', 'development'); + await createPR('main', 'development', 'nightly'); } else if (currentBranch === 'development') { - // Development -> Feature branches + // Development -> Nightly + } else if (currentBranch === 'nightly') { + // Nightly -> Feature branches const branches = await github.paginate(github.rest.repos.listBranches, { owner: context.repo.owner, repo: context.repo.repo,