Skip to content

Commit

Permalink
ci(renovate): special handling for hale studio updates
Browse files Browse the repository at this point in the history
- treat major updates as breaking changes
- treat minor updates as features
  • Loading branch information
stempler committed May 23, 2024
1 parent 893989a commit 9950300
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,18 @@
":docker",
"docker:pinDigests",
],
packageRules: [
{
description: "Treat major hale studio updates as breaking change",
matchPackagePrefixes: ["eu.esdihumboldt.hale:"],
matchUpdateTypes: ["major"],
semanticCommitType: "feat!" // to be confirmed that this works
},
{
description: "Treat minor hale studio updates as feature",
matchPackagePrefixes: ["eu.esdihumboldt.hale:"],
matchUpdateTypes: ["minor"],
semanticCommitType: "feat"
},
],
}

0 comments on commit 9950300

Please sign in to comment.