|
|
|
@ -48,7 +48,7 @@ var (
|
|
|
|
|
|
|
|
|
|
func init() { |
|
|
|
|
IssueCloseKeywordsPat = regexp.MustCompile(fmt.Sprintf(`(?i)(?:%s) \S+`, strings.Join(IssueCloseKeywords, "|"))) |
|
|
|
|
IssueReferenceKeywordsPat = regexp.MustCompile(fmt.Sprintf(`(?i)(?:) \S+`)) |
|
|
|
|
IssueReferenceKeywordsPat = regexp.MustCompile(`(?i)(?:)(^| )\S+`) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Action represents user operation type and other information to repository.,
|
|
|
|
@ -114,6 +114,8 @@ func updateIssuesCommit(userId, repoId int64, repoUserName, repoName string, com
|
|
|
|
|
for _, c := range commits { |
|
|
|
|
references := IssueReferenceKeywordsPat.FindAllString(c.Message, -1) |
|
|
|
|
|
|
|
|
|
// FIXME: should not be a reference when it comes with action.
|
|
|
|
|
// e.g. fixes #1 will not have duplicated reference message.
|
|
|
|
|
for _, ref := range references { |
|
|
|
|
ref := ref[strings.IndexByte(ref, byte(' '))+1:] |
|
|
|
|
ref = strings.TrimRightFunc(ref, func(c rune) bool { |
|
|
|
@ -128,7 +130,7 @@ func updateIssuesCommit(userId, repoId int64, repoUserName, repoName string, com
|
|
|
|
|
if ref[0] == '#' { |
|
|
|
|
ref = fmt.Sprintf("%s/%s%s", repoUserName, repoName, ref) |
|
|
|
|
} else if strings.Contains(ref, "/") == false { |
|
|
|
|
// We don't support User#ID syntax yet
|
|
|
|
|
// FIXME: We don't support User#ID syntax yet
|
|
|
|
|
// return ErrNotImplemented
|
|
|
|
|
|
|
|
|
|
continue |
|
|
|
|