mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-17 13:25:18 +00:00
s
This commit is contained in:
parent
0293412a42
commit
a1e32d8331
1 changed files with 5 additions and 0 deletions
|
|
@ -298,6 +298,11 @@ class BitbucketProvider(GitProvider):
|
||||||
})
|
})
|
||||||
|
|
||||||
response = requests.request("PUT", self.bitbucket_pull_request_api_url, headers=self.headers, data=payload)
|
response = requests.request("PUT", self.bitbucket_pull_request_api_url, headers=self.headers, data=payload)
|
||||||
|
try:
|
||||||
|
if response.status_code != 200:
|
||||||
|
get_logger().info(f"Failed to update description, error code: {response.status_code}")
|
||||||
|
except:
|
||||||
|
pass
|
||||||
return response
|
return response
|
||||||
|
|
||||||
# bitbucket does not support labels
|
# bitbucket does not support labels
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue