mirror of
https://github.com/mshick/add-pr-comment.git
synced 2026-01-01 14:49:44 +11:00
Adding the possibility to auto refresh the sticky comment position... (#66)
* Allow to refresh the uniq comment position to be the latest one in the PR feed. * Allow to refresh the uniq comment position to be the latest one in the PR feed. * Removed "auto-" from func name + now defaulting new option to "false"
This commit is contained in:
parent
a65df5f64f
commit
fe6766b6b0
10 changed files with 2641 additions and 2572 deletions
|
|
@ -1,6 +1,6 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.createComment = exports.updateComment = exports.getExistingCommentId = void 0;
|
||||
exports.createComment = exports.deleteComment = exports.updateComment = exports.getExistingCommentId = void 0;
|
||||
async function getExistingCommentId(octokit, owner, repo, issueNumber, messageId) {
|
||||
const parameters = {
|
||||
owner,
|
||||
|
|
@ -31,6 +31,16 @@ async function updateComment(octokit, owner, repo, existingCommentId, body) {
|
|||
return updatedComment.data;
|
||||
}
|
||||
exports.updateComment = updateComment;
|
||||
async function deleteComment(octokit, owner, repo, existingCommentId, body) {
|
||||
const deletedComment = await octokit.rest.issues.deleteComment({
|
||||
comment_id: existingCommentId,
|
||||
owner,
|
||||
repo,
|
||||
body,
|
||||
});
|
||||
return deletedComment.data;
|
||||
}
|
||||
exports.deleteComment = deleteComment;
|
||||
async function createComment(octokit, owner, repo, issueNumber, body) {
|
||||
const createdComment = await octokit.rest.issues.createComment({
|
||||
issue_number: issueNumber,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue