fix(igdb): repair --game-details-path flag typo in game-details workflow#23
Merged
Conversation
The invocation passed '--game details-path' (space instead of hyphen), so argparse prefix-matched --game to --game-details-path, swallowed 'details-path' as its value, and rejected the real path as an unrecognized argument. Masked until now because every run failed at the igdb_env deployment gate before reaching this step. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
The script invocation in
igdb-game-details.ymlpassed--game details-path(space instead of hyphen). argparse prefix-matched--gameto--game-details-path, swalloweddetails-pathas its value, and rejected the real path as an unrecognized argument, failing the job with exit 2.This was masked until today: every prior run of this workflow (back to May 11) failed at the
igdb_envdeployment gate because the environment only had a*igdb*tag policy and nomainbranch policy. With the branch rule added, the first dispatch that reached this step exposed the typo (run 27275538487).After merge, a
workflow_dispatchwithall: truewill backfilloutput/igdb_game_details.json— currently 18 worlds have no details entry (6 of them already carry anigdb_idin their manifest).🤖 Generated with Claude Code