diff --git a/src/GitVersion.Core/Core/Abstractions/IRepositoryStore.cs b/src/GitVersion.Core/Core/Abstractions/IRepositoryStore.cs index 7014da81e9..5b0b969fba 100644 --- a/src/GitVersion.Core/Core/Abstractions/IRepositoryStore.cs +++ b/src/GitVersion.Core/Core/Abstractions/IRepositoryStore.cs @@ -8,6 +8,7 @@ public interface IRepositoryStore /// Find the merge base of the two branches, i.e. the best common ancestor of the two branches' tips. /// ICommit? FindMergeBase(IBranch? branch, IBranch? otherBranch); + ICommit? FindMergeBase(ICommit commit, ICommit mainlineTip); ICommit? GetCurrentCommit(IBranch currentBranch, string? commitId); ICommit GetBaseVersionSource(ICommit currentBranchTip);