refactor: reduce complexity of execute_impl in assign_github_issue_milestone.rs - #2125
Draft
github-actions[bot] wants to merge 1 commit into
Draft
Conversation
…lestone.rs Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
Azure Pipelines: Successfully started running 1 pipeline(s). 1 pipeline(s) were filtered out due to trigger conditions. There may be pipelines that require an authorized user to comment /azp run to run. |
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
Clippy's
too_many_lineslint flaggedAssignGithubIssueMilestoneResult::execute_implat 166/100 lines. The function mixed request validation, GitHub API target/filter checks, numeric-vs-title milestone resolution (including auto-create), and the final PATCH assignment all in one body, with a large nestedif/elsefor the two milestone-resolution paths.Change
Extracted two pure/async helper functions to isolate the milestone-resolution logic, each returning
Result<Result<ResolvedMilestone, ExecutionResult>>so the caller can propagate soft failures without inline branching:resolve_milestone_by_number— looks up an explicitmilestone_numberagainst the fetched milestone list and checks the allow-list policy.resolve_milestone_by_title— matches an existing milestone by title, disambiguates duplicates, and auto-creates a milestone when allowed and none matches.execute_implnow delegates to whichever helper matches the request shape and unwraps theResultin a single early-return, keeping the top-level function focused on target validation, GitHub client setup, and the final assignment PATCH.No public API, behavior, or error messages were changed — all logic/text branches were moved verbatim into the new helpers.
Verification
cargo build— clean.cargo test --bin ado-aw safe_outputs::assign_github_issue_milestone— all 6 existing tests pass.cargo clippy --all-targets --all-features -- -W clippy::too_many_lines— no more warning for this file/function.