No code changes: workflow status-check bug already fixed on main#115
Merged
Conversation
Copilot
AI
changed the title
[WIP] Fix issues with Copilot integration
No code changes: workflow status-check bug already fixed on main
Jul 25, 2026
fafa33
marked this pull request as ready for review
July 26, 2026 05:22
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.
Summary
The referenced CI run failure (
Acquire Sky SupplyBasisSnapshot (Milestone 1), run 30178473419) was caused by.github/workflows/acquire-sky-supply-basis.ymlcheckingmf_result.status != "ok", whileCoinGeckoObservedMarketFactProvider.collect()returnsstatus="success"on success — a successful acquisition was misreported and treated as a failure (exit 1).Scope and architecture
Investigation findings
status='success'compared against the literal"ok"in the workflow's inline Python step.MarketFactStatus/MARKET_FACT_STATUSESinhunter.market_facts.modelsandCoinGeckoObservedMarketFactProviderinhunter.market_facts.providers, both of which use"success"as the success sentinel.mainvia PR Fix workflow: accept "success" as CoinGecko acquisition status #113 ("align-workflow-with-provider-contract"), merged after the failing run but before this branch was created. The workflow already readsif mf_result.status != "success":.git diff origin/main HEADis empty — this branch is fully in sync withmain; no code changes are required.Acceptance-criteria matrix
"success", not"ok").github/workflows/acquire-sky-supply-basis.ymlline 161 already readsif mf_result.status != "success":(merged via PR #113, prior to this branch)pytest tests -k "market_fact or value_capture or coingecko"— 102 passedFAILorBLOCKEDcriterion remains for a PR presented as merge-ready.Verification
ruff check .black --check .or the repository-approved equivalentmypypytestsuite (targeted subset run; no code changed)Operational validation
Operational evidence:
Remaining limitations and risks
main; the underlying acquisition (persisting the SupplyBasisSnapshot record) has not yet been completed operationally.Implementer readiness declaration
READY FOR REVIEW— all acceptance criteria and required operational validations pass from the implementer's own assessment.CHANGES REQUIRED— implementation or evidence remains incomplete.BLOCKED— completion depends on an unavailable environment, provider, credential, or external condition.