From 22a23da6e9409e4b36d8ac0319d8457c4935deca Mon Sep 17 00:00:00 2001 From: Jeremy Date: Mon, 12 Jan 2026 00:19:19 -0500 Subject: [PATCH] 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,