[ci] chore: automate PR labeling and integrate Codecov coverage reporting#64
Merged
JoyboyBrian merged 8 commits intomainfrom Feb 18, 2026
Merged
[ci] chore: automate PR labeling and integrate Codecov coverage reporting#64JoyboyBrian merged 8 commits intomainfrom
JoyboyBrian merged 8 commits intomainfrom
Conversation
…improving examples. Updated README to better outline Local and Remote Rollout modes, ensuring consistency in explanations and error handling.
…t and integrating Codecov for coverage uploads on Python 3.12.
There was a problem hiding this comment.
1 issue found across 2 files (changes from recent commits).
Prompt for AI agents (all 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/tests.yml">
<violation number="1" location=".github/workflows/tests.yml:63">
P2: Guard the Codecov upload step so it doesn’t run on forked PRs where secrets are unavailable; otherwise this step will fail with an empty token.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
…decov only for non-fork pull requests on Python 3.12.
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.
What
.github/workflows/auto-label-pr.ymlto auto-apply labels from PR titles ([module] type: ...), including[BREAKING], type-based labels, and module label mapping..github/workflows/tests.ymlto generate branch coverage andcoverage.xmlon Python 3.12, then upload coverage to Codecov viacodecov/codecov-action@v5.codecov.ymlwith project/patch coverage targets (70%) and diff-focused comments.EvalRunnerby removing unused tuple unpacking (await task).https://platform.osmosis.aiand refreshuv.lockdependency patches (aiohttp 3.13.2 -> 3.13.3,urllib3 2.6.2 -> 2.6.3).Why
Type of Change
How to Test
uv run pytest --cov=osmosis_ai --cov-branch --cov-report=term-missing --cov-report=xml.coverage.xmlis generated in the repo root.[module] type: descriptionformat and verify labels are auto-applied.ruff check .andruff format --check ..Checklist
[module] type: descriptionformatenhancement,bug,breaking)ruff check .andruff format --check .passpyright osmosis_ai/passespytestpasses (new tests added if applicable)Summary by cubic
Automates PR labeling from titles, integrates Codecov coverage reporting with guarded uploads for non-fork PRs, and removes dead code to reduce noise. Also updates the README signup link and patches dependencies.
New Features
Refactors
Written for commit 8c4847c. Summary will update on new commits.