From b6acdb906693e2a902e0aa20e61c886ac1b18299 Mon Sep 17 00:00:00 2001 From: JivusAyrus Date: Thu, 5 Sep 2024 01:32:25 +0530 Subject: [PATCH] chore: test --- src/utils.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/utils.ts b/src/utils.ts index 2155e6f..dd2a0be 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,4 +1,5 @@ import * as github from '@actions/github'; +import * as core from '@actions/core'; import { SubgraphCommandJsonOutput } from 'wgc/dist/core/types/types.js'; import { Context } from '@actions/github/lib/context.js'; @@ -31,7 +32,10 @@ export const addComment = async ({ issue_number: prNumber, }); + core.error(JSON.stringify(comments.data)); + for (const comment of comments.data) { + core.info(JSON.stringify(comment)); if ( comment.body && (comment.body.startsWith('### 🚀 The following feature flags have been deployed:') ||