From 7f2aee528dde575e7b6336ce8b09c4c980fbf291 Mon Sep 17 00:00:00 2001 From: wenjie Date: Tue, 16 Jul 2024 11:48:55 +0800 Subject: [PATCH] Disabled issue commenting on client side. --- github-bot/src/services/issueService.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/github-bot/src/services/issueService.go b/github-bot/src/services/issueService.go index 99596f7..936bf55 100644 --- a/github-bot/src/services/issueService.go +++ b/github-bot/src/services/issueService.go @@ -42,8 +42,8 @@ func ProcessIssue(ctx context.Context, client *github.Client, jamaiClient *http. LabelIssue(ctx, client, jamaiClient, tableId, owner, repo, issue, labels) - // Comment on the issue with the response - utils.CommentOnIssue(ctx, client, owner, repo, issue.Number, result.Response) + // Comment on the issue with the response. Disabled for now as of 16/7 + // utils.CommentOnIssue(ctx, client, owner, repo, issue.Number, result.Response) } func LabelIssue(ctx context.Context, client *github.Client, jamaiClient *http.Client, tableId string, owner, repo string, issue *models.Issue, labels []string){