Merged
Conversation
Memory Profile ReportSummary
Iteration Details
Top Memory Allocations (by location)
Generated by Memory Profile workflow • Commit: 819a01b |
numbata
commented
Dec 21, 2025
| run: bundle exec rake test | ||
| - name: Annotate uncovered lines | ||
| uses: ggilder/codecoverage@v1 | ||
| uses: ggilder/codecoverage@6a0a9c002c49b6e5e4ce15f22574275600163618 |
Owner
Author
There was a problem hiding this comment.
Why this specific commit: See the discussion in ggilder/codecoverage#20. This commit changes a way of how action comment the warnings to annotations-via-console. Writing coverage annotations directly to the console avoids the API call, which in turn lets the workflow run with the default GITHUB_TOKEN (no repository write permission)
Current GitHub annotation limits
- 10 warnings + 10 errors per step
- 50 annotations per job (sum of all steps)
- 50 “run” annotations (system-generated)
If we ever need more than those limits, we can pin the action to a tag that re-enables the API path—at the cost of requiring the checks: write permission again.
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.
Changes a way of how action comment the warnings to annotations-via-console. Writing coverage annotations directly to the console avoids the API call, which in turn lets the workflow run with the default
GITHUB_TOKEN(no repository write permission).