Set Issue assignees by inputs (#10)

* Set Issue assignees by inputs

* remove unused file

* Revert "remove unused file"

This reverts commit f308fad240706376cf21c6df7490b84c66ef1905.

* npm run all

* add heading to README

* create issue templates
This commit is contained in:
Naoki Oketani
2019-12-09 09:41:29 +09:00
committed by GitHub
parent 02e2cee4ed
commit 9931b4d0d0
6 changed files with 14308 additions and 204 deletions

View File

@@ -29,7 +29,11 @@ async function run(): Promise<void> {
const issueBody = `\`\`\`\n${stripAnsi(result.stdout)}\n\`\`\``
const issueOptions = {
title: core.getInput('issue_title'),
body: issueBody
body: issueBody,
assignees: core
.getInput('issue_assignees')
.replace(/\s+/g, '')
.split(',')
}
const {
data: issue