Skip to content

Commit

Permalink
Update modules/core/src/main/scala/org/scalasteward/core/repoconfig/R…
Browse files Browse the repository at this point in the history
…epoConfig.scala

Co-authored-by: Marco Zühlke <mzuehlke@gmail.com>
  • Loading branch information
michaelmior and mzuehlke authored Oct 13, 2024
1 parent 0e238df commit f0ebc54
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,7 @@ object RepoConfig {
assignees = x.assignees |+| y.assignees,
reviewers = x.reviewers |+| y.reviewers,
dependencyOverrides = x.dependencyOverrides |+| y.dependencyOverrides,
signoffCommits =
if (x.signoffCommits.isDefined || y.signoffCommits.isDefined)
Some(x.signoffCommits.getOrElse(false) || y.signoffCommits.getOrElse(false))
else None
signoffCommits = x.signoffCommits.orElse(y.signoffCommits)
)
}
)
Expand Down

0 comments on commit f0ebc54

Please sign in to comment.