From cee022556b579a67fcacaec1f4a5cdace55dc4f4 Mon Sep 17 00:00:00 2001 From: Ross Light Date: Tue, 9 Oct 2018 16:56:19 -0700 Subject: [PATCH] internal/contributebot: allow dots in package name (for go.mod) (#509) --- internal/contributebot/process.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/contributebot/process.go b/internal/contributebot/process.go index afd4aa499d..68348d5bac 100644 --- a/internal/contributebot/process.go +++ b/internal/contributebot/process.go @@ -32,7 +32,7 @@ const ( ) var ( - issueTitleRegexp = regexp.MustCompile("^[a-z0-9/-]+: .*$") + issueTitleRegexp = regexp.MustCompile(`^[a-z0-9./-]+: .*$`) pullRequestTitleRegexp = issueTitleRegexp )