From f3b0e22762ad5fe596861f10c8749587544430c2 Mon Sep 17 00:00:00 2001 From: Alfie Jones Date: Fri, 12 Apr 2024 12:27:28 +0100 Subject: [PATCH] Update github_comments.go --- apps/backend/app/git/github/github_comments.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/backend/app/git/github/github_comments.go b/apps/backend/app/git/github/github_comments.go index 2e3d57cf..178e0fe2 100644 --- a/apps/backend/app/git/github/github_comments.go +++ b/apps/backend/app/git/github/github_comments.go @@ -78,7 +78,7 @@ func (c *GithubAppClient) createCheckRun(ctx context.Context, project models.Pro Status: &status, StartedAt: &startedAt, Output: &github.CheckRunOutput{ - Title: &title, + Title: &summary, Summary: &summary, }, } @@ -137,7 +137,7 @@ func (c *GithubAppClient) updateCheckRun(ctx context.Context, project models.Pro Name: title, DetailsURL: &detailsURL, Output: &github.CheckRunOutput{ - Title: &title, + Title: &summary, Summary: &summary, }, }