investigate_ci: default to current branch's PR#3783
Open
jstarks wants to merge 1 commit into
Open
Conversation
Make the PR/run-ID argument to investigate_ci.py optional. When omitted, the script resolves the PR associated with the current git branch via gh pr view and investigates its CI run, so the common case no longer requires looking up and passing a PR number by hand.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR improves the repo_support/investigate_ci.py developer workflow by making the PR/run ID argument optional and defaulting to investigating CI for the PR associated with the current git branch.
Changes:
- Allow invoking
repo_support/investigate_ci.pywith no arguments to auto-resolve the current branch’s PR and its CI run viagh pr view. - Refactor “run ID from PR head SHA” logic into a shared helper (
_run_id_from_sha) to avoid duplication. - Update the
openvmm-ci-investigationskill documentation to reflect the new no-argument usage.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| repo_support/investigate_ci.py | Adds “current branch PR” resolution path and refactors SHA→run selection into a helper. |
| .github/skills/openvmm-ci-investigation/SKILL.md | Updates documented usage to prefer the new no-argument workflow. |
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.
Make the PR/run-ID argument to investigate_ci.py optional. When omitted,
the script resolves the PR associated with the current git branch via
gh pr view and investigates its CI run, so the common case no longer
requires looking up and passing a PR number by hand.