We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a61dc53 commit 828aa61Copy full SHA for 828aa61
.github/workflows/check-for-integration-result.yml
@@ -21,8 +21,7 @@ jobs:
21
owner: context.repo.owner,
22
repo: context.repo.repo
23
});
24
- console.log(result)
25
- const integrationComments = result.data.filter(c => c.user.login == 'primer-integration[bot]' && c.body.includes('test-result'))
+ const integrationComments = result.data.filter(c => c.user.login == 'primer-integration[bot]') // && c.body.includes('test-result'))
26
console.log(integrationComments)
27
28
const latestComment = integrationComments.sort(c => c.createdAt)[0]
0 commit comments