Interface HookMergeDetectionProvider


public interface HookMergeDetectionProvider
Since:
2.4.0
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    branchesMerged(String target, String branch)
    Checks whether branch has been merged into target.
  • Method Details

    • branchesMerged

      boolean branchesMerged(String target, String branch)
      Checks whether branch has been merged into target. So this will also return true, when branch has been deleted with this change.
      Parameters:
      target - The name of the branch to check, whether the other branch has been merged into.
      branch - The name of the branch to check, whether it has been merged into the other branch.
      Returns:
      true when branch has been merged into target, false otherwise.