Skip to content

Commit

Permalink
ci(workspace): renovate should have build type
Browse files Browse the repository at this point in the history
  • Loading branch information
hakalb committed Jan 25, 2024
1 parent 90bdc94 commit 12f82a9
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
11 changes: 8 additions & 3 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,28 @@
"enabled": true,
"automerge": true,
"automergeType": "branch",
"commitMessageAction": "lock file maintenance",
"commitMessageAction": "📦 lock file maintenance",
"semanticCommitType": "build"
},
"rangeStrategy": "update-lockfile",
"commitMessageAction": "bump",
"commitMessageAction": "📦 bump",
"packageRules": [
{
"matchPackagePatterns": ["nx"],
"groupName": "Nx related (skip)",
"enabled": false
},
{
"matchPackagePatterns": ["jscutlery", "ngx-deploy-npm"],
"groupName": "Semver related (skip)",
"enabled": false
},
{
"matchPackagePatterns": ["payload"],
"groupName": "Payload related (skip)",
"enabled": false
},
{ "matchPackagePatterns": ["*"], "semanticCommitType": "chore" },
{ "matchPackagePatterns": ["*"], "semanticCommitType": "build" },
{
"matchDepTypes": ["dependencies", "require"],
"semanticCommitType": "fix"
Expand Down
18 changes: 17 additions & 1 deletion packages/nx-payload/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,23 @@
},
"version": {
"executor": "@jscutlery/semver:version",
"options": {}
"options": {},
"configurations": {
"prerelease": {
"releaseAs": "prerelease",
"preid": "beta"
},
"premajor": {
"releaseAs": "premajor",
"preid": "rc"
},
"minor": {
"releaseAs": "minor"
},
"major": {
"releaseAs": "major"
}
}
},
"version-publish": {
"executor": "@jscutlery/semver:version",
Expand Down

0 comments on commit 12f82a9

Please sign in to comment.