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,