You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(gitlab): discard label removal events on merge requests
Label removal events on GitLab merge requests were incorrectly triggering
pipeline runs. The hasOnlyLabelsChanged check used an OR condition that
matched both additions and removals. Changed to compare current vs previous
label count so only label additions are processed.
Signed-off-by: Zaki Shaikh <zashaikh@redhat.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: pkg/provider/gitlab/detect_test.go
+37Lines changed: 37 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,12 @@ import (
13
13
14
14
constlargeComment="/Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s"
0 commit comments