diff --git a/.github/renovate.json b/.github/renovate.json index e5eb94ee..4694b407 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -7,7 +7,8 @@ "helpers:pinGitHubActionDigests" ], "baseBranchPatterns": [ - "development" + "feature/beta-release", + "nightly" ], "timezone": "UTC", "dependencyDashboard": true, diff --git a/.github/workflows/propagate-changes.yml b/.github/workflows/propagate-changes.yml index 044d151a..db93f8b8 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,