151
This commit is contained in:
@@ -83328,7 +83328,7 @@ function query({
|
||||
// package.json
|
||||
var package_default = {
|
||||
name: "@pullfrog/action",
|
||||
version: "0.0.150",
|
||||
version: "0.0.151",
|
||||
type: "module",
|
||||
files: [
|
||||
"index.js",
|
||||
@@ -98555,11 +98555,18 @@ async function deleteProgressComment(ctx) {
|
||||
if (!existingCommentId) {
|
||||
return false;
|
||||
}
|
||||
await ctx.octokit.rest.issues.deleteComment({
|
||||
owner: ctx.owner,
|
||||
repo: ctx.name,
|
||||
comment_id: existingCommentId
|
||||
});
|
||||
try {
|
||||
await ctx.octokit.rest.issues.deleteComment({
|
||||
owner: ctx.owner,
|
||||
repo: ctx.name,
|
||||
comment_id: existingCommentId
|
||||
});
|
||||
} catch (error41) {
|
||||
if (error41 instanceof Error && error41.message.includes("Not Found")) {
|
||||
} else {
|
||||
throw error41;
|
||||
}
|
||||
}
|
||||
progressCommentId = null;
|
||||
progressCommentIdInitialized = true;
|
||||
progressCommentWasUpdated = true;
|
||||
|
||||
Reference in New Issue
Block a user