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
Description of the problem, including code/CLI snippet
After retrieving issues with the Option with_labels_details=True and calling issue.save() the Labels in Gitlab are broken. Means: All old labels are overwritten with new ones. The new ones are dict-elements as shown below.
Looks like there is a problem in the save()-function of issues.
Example task:
# get issuesissue=project.issues.list(all=True, with_labels_details=True)[0]
# edit labels # e.g. delete one, change color, ...# editing is not needed to reproduce this issue # save issue (with changed labels)issue.save()
Expected Behavior
Saves edited labels in issues like before: Non touched should be not touched etc.
Simply save like edited issues retrieved with with_labels_details=False (this works like a charm)