Open
Conversation
…c/plan/tasks match the project glossary.\nPosts report as PR comment and step summary.
|
Note Gemini is unable to generate a summary for this pull request due to the file types involved not being currently supported. |
|
There was a problem hiding this comment.
1 issue found across 1 file
Prompt for AI agents (unresolved issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name=".github/workflows/glossary-checker.yml">
<violation number="1" location=".github/workflows/glossary-checker.yml:116">
P2: If a PR has over 30 comments, `listComments` won't return all of them, causing the bot to spam duplicate comments on every push. Use `github.paginate` to reliably fetch all comments.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
Comment on lines
+116
to
+119
| const { data: comments } = await github.rest.issues.listComments({ | ||
| owner: context.repo.owner, repo: context.repo.repo, | ||
| issue_number: context.issue.number | ||
| }); |
There was a problem hiding this comment.
P2: If a PR has over 30 comments, listComments won't return all of them, causing the bot to spam duplicate comments on every push. Use github.paginate to reliably fetch all comments.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/glossary-checker.yml, line 116:
<comment>If a PR has over 30 comments, `listComments` won't return all of them, causing the bot to spam duplicate comments on every push. Use `github.paginate` to reliably fetch all comments.</comment>
<file context>
@@ -0,0 +1,134 @@
+
+ // Post on PR
+ if (context.payload.pull_request) {
+ const { data: comments } = await github.rest.issues.listComments({
+ owner: context.repo.owner, repo: context.repo.repo,
+ issue_number: context.issue.number
</file context>
Suggested change
| const { data: comments } = await github.rest.issues.listComments({ | |
| owner: context.repo.owner, repo: context.repo.repo, | |
| issue_number: context.issue.number | |
| }); | |
| const comments = await github.paginate(github.rest.issues.listComments, { | |
| owner: context.repo.owner, repo: context.repo.repo, | |
| issue_number: context.issue.number | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Glossary Consistency Checker\nValidates terminology in spec/plan/tasks against the project glossary. Posts report on PRs.