dependbot updates

This commit is contained in:
Federico Builes
2023-07-31 08:39:38 +02:00
parent 6b0d5029d1
commit 8c593e9822
5 changed files with 693 additions and 211 deletions
+2 -2
View File
@@ -74,8 +74,8 @@ async function findCommentByMarker(
)
for await (const {data: comments} of commentsIterator) {
const existingComment = comments.find(comment =>
comment.body?.includes(commentBodyIncludes)
const existingComment = comments.find(
comment => comment.body?.includes(commentBodyIncludes)
)
if (existingComment) return existingComment.id
}