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
{{ message }}
This repository was archived by the owner on Sep 21, 2023. It is now read-only.
In some comments in our repository the comments regexp in comments.go fails to match at all, and sync fails since fields is empty.
As a ugly quickfix I had to add
if len(fields) != 5 {
log.Debug("Failed to update JIRA comment for ", jIssue.ID)
return nil
}
To UpdateComment to make sync work. Also writing the config to home failed on macOS, but worked when I specified a full file path. I can add a separate issue about that if needed.
In some comments in our repository the comments regexp in
comments.gofails to match at all, and sync fails since fields is empty.As a ugly quickfix I had to add
To
UpdateCommentto make sync work. Also writing the config to home failed on macOS, but worked when I specified a full file path. I can add a separate issue about that if needed.