[ARVADOS-DEV] updated: fc43bb3ebe6dd4db87dc0fafca87254760ba4aa6
Git user
git at public.arvados.org
Fri Mar 11 16:03:41 UTC 2022
Summary of changes:
cmd/review-task-reminder/root.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via fc43bb3ebe6dd4db87dc0fafca87254760ba4aa6 (commit)
from 62e5274a5d0e9763d2ec34957eb02fa43ab029ff (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit fc43bb3ebe6dd4db87dc0fafca87254760ba4aa6
Author: Ward Vandewege <ward at curii.com>
Date: Fri Mar 11 11:03:08 2022 -0500
Review reminder script: review task titles can start with a capitalized
word.
refs #18813
Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <ward at curii.com>
diff --git a/cmd/review-task-reminder/root.go b/cmd/review-task-reminder/root.go
index d8ecd97..4838ba2 100644
--- a/cmd/review-task-reminder/root.go
+++ b/cmd/review-task-reminder/root.go
@@ -208,7 +208,7 @@ https://git.arvados.org/arvados-dev.git/cmd/review-task-reminder` +
continue
}
// Filter for review tasks (issue subject must start with 'review')
- reviewRE := regexp.MustCompile(`^review`)
+ reviewRE := regexp.MustCompile(`^(Review|review)`)
if !reviewRE.MatchString(i.Subject) {
continue
}
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list