Skip to content

Fix ciabot.pl not notifying of commits to branches with aliases

The hack used to weed out notifications of duplicate commits using symbolic names means that if two names point to the same ref and one of them was updated with new commits, the other name would cause the new commits to be ignored, since it already contains the new commits.

This fix converts the hack to use refs instead of symbolic names, and hence it can ignore all branches with the new ref as its head, and hence only suppress notifications for commits on branches pointing to a diferent ref.

Merge request reports