From 00233dee9f5f461a6019270fa408b07288814004 Mon Sep 17 00:00:00 2001 From: Guillem Bonet Date: Wed, 23 Feb 2022 17:52:52 +0100 Subject: [PATCH] Change github issue title in intercom endpoint Signed-off-by: Guillem Bonet --- feedback/github.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feedback/github.go b/feedback/github.go index 9684b3d..ccf709c 100644 --- a/feedback/github.go +++ b/feedback/github.go @@ -105,7 +105,7 @@ func (rep *GithubReporter) ReportIssue(report *Report) (issueId string, err erro } req := github.IssueRequest{ - Title: github.String("User report: " + report.UserId), + Title: github.String("User report: " + report.NodeIdentity), Body: github.String(body.String()), } issue, _, err := rep.client.Issues.Create(context.Background(), rep.owner, rep.repository, &req)