mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 02:45:18 +00:00
add publish_labels and get_labels functions
This commit is contained in:
parent
f0dc485305
commit
0e42634da4
1 changed files with 8 additions and 0 deletions
|
|
@ -226,3 +226,11 @@ class BitbucketProvider(GitProvider):
|
|||
# bitbucket does not support labels
|
||||
def publish_description(self, pr_title: str, pr_body: str):
|
||||
return ""
|
||||
|
||||
# bitbucket does not support labels
|
||||
def publish_labels(self, pr_types: list):
|
||||
return ""
|
||||
|
||||
# bitbucket does not support labels
|
||||
def get_labels(self):
|
||||
return ""
|
||||
|
|
|
|||
Loading…
Reference in a new issue