dependbot updates

This commit is contained in:
Federico Builes
2023-08-07 14:07:26 +02:00
committed by Adrien Pessu
parent d5a7e34e39
commit 6af66592ad
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
}