diff --git a/dist/index.js b/dist/index.js index 20f3e3d..24130d9 100644 --- a/dist/index.js +++ b/dist/index.js @@ -9805,59 +9805,14 @@ module.exports = Object.freeze({ const { getOctokit, maybeForbidden } = __nccwpck_require__(1608); - -const message_sign = '​ ​​​​​​​​ ​​​​​​​'; - - const send = async (context, message) => { - const octokit = getOctokit(context); - - const comments = (await maybeForbidden( - octokit.rest.issues.listComments, - { - owner: context.repo.owner, - repo: context.repo.repo, - issue_number: context.issue.number, - }, - )).data; - const previous_comment = comments.filter(comment => comment.body.endsWith(message_sign))[0]; - - if (!message.length) { - if (previous_comment) { - await maybeForbidden( - octokit.rest.issues.deleteComment, - { - owner: context.repo.owner, - repo: context.repo.repo, - comment_id: previous_comment.id, - }, - ); - }; - } else { - if (comments.length && previous_comment) { - await maybeForbidden( - octokit.rest.issues.updateComment, - { - owner: context.repo.owner, - repo: context.repo.repo, - comment_id: previous_comment.id, - body: message.trim() + message_sign, - }, - ); - } else { - await maybeForbidden( - octokit.rest.issues.createComment, - { - owner: context.repo.owner, - repo: context.repo.repo, - issue_number: context.issue.number, - body: message.trim() + message_sign, - }, - ); - }; - }; -}; + if (message) { + console.error(message); + return process.exit(1); + } + console.log('https://genius.com/images/extreme.jpg'); +}; module.exports = Object.freeze({ send,