Skip to content

Commit

Permalink
fix: adding of duplicate commit statuses in gitlab
Browse files Browse the repository at this point in the history
RESOLVES fluxcd#1009

Signed-off-by: Moritz Rieger <[email protected]>
  • Loading branch information
Moritz Rieger committed Dec 20, 2024
1 parent 8b1d9a1 commit 69c9d12
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/notifier/gitlab.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ func (g *GitLab) Post(ctx context.Context, event eventv1.Event) error {
Description: desc,
}

getOpt := &gitlab.GetCommitStatusesOptions{}
getOpt := &gitlab.GetCommitStatusesOptions{
Name: &status.Name,
}
statuses, _, err := g.Client.Commits.GetCommitStatuses(g.Id, rev, getOpt, gitlab.WithContext(ctx))
if err != nil {
return fmt.Errorf("unable to list commit status: %s", err)
Expand Down

0 comments on commit 69c9d12

Please sign in to comment.