fix: preserve gh run view passthrough args#419
fix: preserve gh run view passthrough args#419tsubasakong wants to merge 1 commit intortk-ai:developfrom
Conversation
|
Hi! Thanks for the contribution! Since March 6, all PRs should target the Could you update the base branch? Click Edit at the top right of this PR and change it from Thanks! |
Signed-off-by: Frank <97429702+tsubasakong@users.noreply.github.com>
70ab058 to
b9442b4
Compare
|
Updated this PR to target |
|
|
|
Hey We are cleaning up the codebase and improving the project structure for better onboarding. As part of this effort, PR #826 reorganizes No logic changes — only file moves and import path updates. What you need to doRebase your branch on git fetch origin && git rebase origin/developGit detects renames automatically. If you get import conflicts, update the paths: use crate::git; // now: use crate::cmds::git::git;
use crate::tracking; // now: use crate::core::tracking;
use crate::config; // now: use crate::core::config;
use crate::init; // now: use crate::hooks::init;
use crate::gain; // now: use crate::analytics::gain;Need help rebasing? Tag @aeppling |
Summary
gh run view --log-failed --job <job-id>by checking passthrough flags before extracting a positional run ID-j/-aforms the same as--job/--attemptwhen parsinggh run viewargumentsFixes #416.
Validation
cargo fmt --all --checkcargo clippy --all-targetscargo test