From 4d87d46968bba1bb9bfae22567a019d43ff9ebd8 Mon Sep 17 00:00:00 2001 From: Stefan Mihartescu Date: Thu, 12 May 2022 15:49:42 +0300 Subject: [PATCH] Update service.ts --- src/github/service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github/service.ts b/src/github/service.ts index 83a2cdd..319fd35 100644 --- a/src/github/service.ts +++ b/src/github/service.ts @@ -153,7 +153,7 @@ const createIssue = async (repo: string, owner: string, octokit, issue: GithubIs owner: owner, repo: repo, title: issue.title, - body: issue.body + body: issue.body.slice(65550) }) }