add publish_labels and get_labels functions

This commit is contained in:
sarbjitgrewal
2023-08-25 10:15:30 +05:30
parent f0dc485305
commit 0e42634da4

View File

@ -226,3 +226,11 @@ class BitbucketProvider(GitProvider):
# bitbucket does not support labels # bitbucket does not support labels
def publish_description(self, pr_title: str, pr_body: str): def publish_description(self, pr_title: str, pr_body: str):
return "" return ""
# bitbucket does not support labels
def publish_labels(self, pr_types: list):
return ""
# bitbucket does not support labels
def get_labels(self):
return ""