This commit is contained in:
Stephan 2021-12-08 13:10:28 +01:00
parent 18c361ce7f
commit 0a056599a3

View File

@ -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
})