This commit is contained in:
Ciro Santilli
2022-08-03 06:01:14 +00:00
parent f9265e1347
commit c326d725c6

View File

@@ -223,18 +223,20 @@ try {
}) })
console.log('content: ' + require('util').inspect(content, { depth: null })); console.log('content: ' + require('util').inspect(content, { depth: null }));
contentS = Buffer.from(content.data.content, 'base64').toString('utf-8') contentS = Buffer.from(content.data.content, 'base64').toString('utf-8')
console.error('contentS: ' + require('util').inspect(contentS))
const lines = contentS.split('\n') const lines = contentS.split('\n')
const titleAndLink = lines[2] const titleAndLink = lines[2]
const match = titleAndLink.match(/\[([^\]]+)\]\(([^)]+)\)/) const match = titleAndLink.match(/\[([^\]]+)\]\(([^)]+)\)/)
const title = match[1] const title = match[1]
const link = match[2] const link = match[2]
const body = lines[5] const body = lines[5]
const new_issue = octokit.issues.create({ const new_issue_duty = await octokit.issues.create({
owner: payload.repository.owner.login, owner: payload.repository.owner.login,
repo: payload.repository.name, repo: payload.repository.name,
title, title,
body: content.data.html_url + '\n\n' + link + '\n\n' + html_url + '\n\n' + body, body: content.data.html_url + '\n\n' + link + '\n\n' + html_url + '\n\n' + body,
}) })
console.error('new_issue_duty: ' + require('util').inspect(new_issue_duty, { depth: null }))
} }
} catch (error) { } catch (error) {
core.setFailed(error.message); core.setFailed(error.message);