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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user