From 3e5d1e75b2e103a6bec2bb27862b54cc0a976dcd Mon Sep 17 00:00:00 2001 From: Hardy Hobeck Date: Tue, 4 Oct 2022 16:22:31 +0200 Subject: [PATCH] Change to trigger the CI pipeline again. --- src/GitVersion.Core/Core/Abstractions/IRepositoryStore.cs | 1 + 1 file changed, 1 insertion(+) 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);