From 7df9f9edfa5ec9619c9fb6cbcbc4774e542a79a4 Mon Sep 17 00:00:00 2001 From: Ross Light Date: Tue, 9 Oct 2018 15:29:00 -0700 Subject: [PATCH] internal/contributebot: allow dots in package name (for go.mod) --- 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 )