Adding get_pr_id method to Git Providers #320
Merged
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.
PR Type:
Enhancement
PR Description:
This PR introduces a new method,
get_pr_id
, in the abstract Git Provider class and its implementations (GitHub and GitLab). The method is designed to return the PR ID, which is used in the PR Description tool. This change provides a more consistent and error-tolerant way of fetching the PR ID across different Git providers.PR Main Files Walkthrough:
files:
pr_agent/git_providers/git_provider.py
: Added the abstract methodget_pr_id
to the abstract Git Provider class.pr_agent/git_providers/github_provider.py
: Implemented theget_pr_id
method for the GitHub provider, which returns the PR ID in the format "repo/pr_num".pr_agent/git_providers/gitlab_provider.py
: Implemented theget_pr_id
method for the GitLab provider, which returns the PR ID as the web URL of the merge request.pr_agent/tools/pr_description.py
: Replaced the direct assignment ofpr_id
with a call to the newget_pr_id
method from the Git Provider.