Add nightly branch to propagate changes workflow

This commit is contained in:
Jeremy
2026-01-12 00:19:19 -05:00
committed by GitHub
parent cb877af974
commit 22a23da6e9

View File

@@ -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,