Merge branch 'main' into feature/beta-release

This commit is contained in:
Jeremy
2026-01-12 00:34:06 -05:00
committed by GitHub
2 changed files with 7 additions and 3 deletions

View File

@@ -7,7 +7,8 @@
"helpers:pinGitHubActionDigests"
],
"baseBranchPatterns": [
"development"
"feature/beta-release",
"nightly"
],
"timezone": "UTC",
"dependencyDashboard": true,

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,