Skip to content

Commit 5327983

Browse files
committed
bridge/gitlab: handle other notes cases
1 parent 9ecbcb1 commit 5327983

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Diff for: bridge/gitlab/import.go

+9-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,15 @@ func (gi *gitlabImporter) ensureNote(repo *cache.RepoCache, b *cache.BugCache, n
248248

249249
return err
250250

251-
case NOTE_UNKNOWN:
251+
case NOTE_UNKNOWN,
252+
NOTE_ASSIGNED,
253+
NOTE_UNASSIGNED,
254+
NOTE_CHANGED_MILESTONE,
255+
NOTE_REMOVED_MILESTONE,
256+
NOTE_CHANGED_DUEDATE,
257+
NOTE_REMOVED_DUEDATE,
258+
NOTE_LOCKED,
259+
NOTE_UNLOCKED:
252260
return nil
253261

254262
default:

0 commit comments

Comments
 (0)