in githubissues/main.go [157:164]
func GetGithubRepo(build *cbpb.Build) string {
if build.Substitutions != nil && build.Substitutions["REPO_FULL_NAME"] != "" {
// return repo full name if it's available
// e.g. "GoogleCloudPlatform/cloud-build-notifiers"
return build.Substitutions["REPO_FULL_NAME"]
}
return ""
}