Skip to content

Commit

Permalink
chore: create versioned branch
Browse files Browse the repository at this point in the history
  • Loading branch information
tobybellwood committed Oct 29, 2024
1 parent 7e93fa1 commit 6d064e4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/merge-branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Merge main -> php81
- name: Merge main -> versioned
uses: devmasx/merge-branch@master
with:
type: now
from_branch: main
target_branch: php81
target_branch: versioned
github_token: ${{ github.token }}
11 changes: 10 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"baseBranches": [
"main"
"main",
"versioned"
],
"extends": ["config:base"],
"automerge": true,
Expand All @@ -11,6 +12,7 @@
{
"datasources": ["packagist"],
"updateTypes": ["patch", "minor"],
"matchBaseBranches": ["main"],
"packageNames": [
"drupal/core-dev-pinned",
"drupal/core-recommended",
Expand All @@ -22,6 +24,7 @@
{
"datasources": ["packagist"],
"updateTypes": ["major"],
"matchBaseBranches": ["main"],
"packageNames": [
"drupal/core-dev-pinned",
"drupal/core-recommended",
Expand All @@ -32,7 +35,13 @@
},
{
"matchManagers": ["github-actions"],
"matchBaseBranches": ["main"],
"groupName": "GitHub actions"
},
{
"matchDatasources": ["docker"],
"matchBaseBranches": ["versioned"],
"versioning": "semver"
}
]
}

0 comments on commit 6d064e4

Please sign in to comment.