We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56d9683 commit e4b7653Copy full SHA for e4b7653
internal/cmd/root.go
@@ -152,9 +152,8 @@ func runCombine(cmd *cobra.Command, args []string) error {
152
153
Logger.Debug("starting gh-combine", "version", version.String())
154
155
- // if the dependabot flag is set, set the branch prefix to "dependabot/"
156
- if dependabot {
157
- branchPrefix = "dependabot/"
+ // if the dependabot flag is set and branchPrefix is not already set, set the branch prefix to "dependabot/"
+ if dependabot && branchPrefix == "" {
158
}
159
160
// Input validation
0 commit comments