Skip to content

Commit

Permalink
Add penguin
Browse files Browse the repository at this point in the history
  • Loading branch information
taylormonacelli committed Nov 7, 2024
1 parent 1defead commit b310fc1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ var (
short: "Generate Renovate configuration using rabbit preset",
long: "Generate Renovate configuration using rabbit preset, which auto-merges all dependency types and recreates PRs without filtering update types.",
},
"penguin": {
short: "Generate Renovate configuration using penguin preset",
long: "Generate Renovate configuration using penguin preset, which auto-merges all dependency types with branch merge strategy and ignores tests.",
},
}
)

Expand Down
9 changes: 9 additions & 0 deletions core/schemas.cue
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,12 @@ monkey: #RenovateConfig & bestPracticesBase & commonPatterns.withGoPost & {
rabbit: #RenovateConfig & bestPracticesBase & commonPatterns.withGoPost & {
packageRules: [commonRuleFields]
}

penguin: #RenovateConfig & bestPracticesBase & commonPatterns.withGoPost & {
packageRules: [
commonRuleFields & {
automergeType: "branch"
ignoreTests: true
},
]
}

0 comments on commit b310fc1

Please sign in to comment.