Merge branch 'main' into feature/beta-release
This commit is contained in:
3
.github/renovate.json
vendored
3
.github/renovate.json
vendored
@@ -7,7 +7,8 @@
|
||||
"helpers:pinGitHubActionDigests"
|
||||
],
|
||||
"baseBranchPatterns": [
|
||||
"development"
|
||||
"feature/beta-release",
|
||||
"nightly"
|
||||
],
|
||||
"timezone": "UTC",
|
||||
"dependencyDashboard": true,
|
||||
|
||||
7
.github/workflows/propagate-changes.yml
vendored
7
.github/workflows/propagate-changes.yml
vendored
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user