Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"helpers:pinGitHubActionDigests"
],
"baseBranchPatterns": [
"development"
"feature/beta-release",
"nightly"
],
"timezone": "UTC",
"dependencyDashboard": true,
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/propagate-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- main
- development
- nightly

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down Expand Up @@ -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,
Expand Down
Loading