Skip to content

Commit

Permalink
chore: test
Browse files Browse the repository at this point in the history
  • Loading branch information
JivusAyrus committed Sep 4, 2024
1 parent fb402c8 commit b6acdb9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/utils.ts
Original file line number Diff line number Diff line change
@@ -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';

Expand Down Expand Up @@ -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:') ||
Expand Down

0 comments on commit b6acdb9

Please sign in to comment.