diff --git a/.github/workflows/rest-description.yml b/.github/workflows/rest-description.yml index fa040a7..b6ae8d7 100644 --- a/.github/workflows/rest-description.yml +++ b/.github/workflows/rest-description.yml @@ -12,10 +12,12 @@ jobs: with: script: | const title = `${{ github.event.issue.title }} !` + const body = `updated\n${{ github.event.issue.body }}` github.issues.update({ issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - title: title + title: title, + body: body }) \ No newline at end of file