From bc087e476947fbea4e51ed30b5ec3343ed97d38a Mon Sep 17 00:00:00 2001 From: KeisukeYamashita <19yamashita15@gmail.com> Date: Fri, 8 Apr 2022 19:35:57 +0900 Subject: [PATCH] Fix var and const Signed-off-by: KeisukeYamashita <19yamashita15@gmail.com> --- ci.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci.go b/ci.go index 866bef7..28930e1 100644 --- a/ci.go +++ b/ci.go @@ -8,9 +8,11 @@ import ( "strings" ) -var ( +const ( defaultCloudBuildRegion = "global" +) +var ( // https://help.github.com/en/actions/reference/events-that-trigger-workflows#pull-request-event-pull_request githubActionsPRRefRegexp = regexp.MustCompile(`refs/pull/\d+/merge`) )