Questions tagged [bitbucket-cloud]

Bitbucket Cloud is the online version of Atlassian's Git repository management service, publicly hosted by Atlassian servers at bitbucket.org. It hosts git repositories, along with associated project wikis, issue trackers, CI pipelines, pull requests, and user-managed download files.

Bitbucket Cloud is the online version of Atlassian's Git repository management service, publicly hosted by Atlassian at bitbucket.org. This hosting service provides both free and paid subscription options. It hosts git repositories, along with associated project wikis, issue trackers, CI pipelines, pull requests, and user-managed download files.

Should not be confused with [bitbucket-server] aka Bitbucket data center, which is an enterprise server software package that organizations can purchase to host a private Bitbucket server instance on their own server hardware.

179 questions
0
votes
3 answers

In an Azure Devops pipeline, how can I detect and cancel other build jobs from the same Git branch?

How do I write an Azure Pipeline script that detects whether any other CI build jobs are running using the same Git branch, and cancels those other jobs? I want to cancel only CI build jobs. Any PR build jobs and manually triggered jobs from the…
Ray Depew
  • 573
  • 1
  • 9
  • 22
0
votes
0 answers

Where or how to integrate pipeline into pre existing project repository?

We have a product that is several years old. Its Git repository includes branches and/or tags for the version currently under development, the latest release, and previous releases. The latest release and the two previous releases continue to…
Ray Depew
  • 573
  • 1
  • 9
  • 22
0
votes
1 answer

How to authenticate to Bitbucket with atlassian-python-api?

I'm using the module https://github.com/atlassian-api/atlassian-python-api to work on Bitbucket server with python. In their doc, they show a simple way to authenticate: from atlassian import Bitbucket bitbucket = Bitbucket( …
0
votes
1 answer

Creating CI/CD Pipeline using AWS CodePipeline with Bitbucket cloud as the SCM

I am currently looking to create a CI/CD workflow in AWS using AWS CodePipeline using AWS CodeBuild and AWS CloudFormation with Bitbucket Cloud as the SCM. I am looking to implement two pipelines for now in this workflow: On commit to a development…
0
votes
1 answer

Google Cloud Build Bitbucket integration does not support git tags

Just as you can see in the title, if you configure a CloudBuild trigger to pull a repository from Bitbucket, it will be a mirror and it won't have tags, so build setups that use for example poetry dynamic versions will build packages with version =…
0
votes
1 answer

Bitbucket migration from local server to cloud: What about pull requests and comments?

My organization are planning to migrate from a local Bitbucket server to bitbucket.org. The only major obstacle so far has been that the server-to-cloud migration path only migrates repository data (source code, tags, branches), not metadata (pull…
0
votes
1 answer

Restrict user to a single workspace in bitbucket

I am working on bitbucket cloud but having some challenges with managing users. There are certain people in the team who will be working on a workspace in bitbucket (cloud) version. I would want to restrict users only to a 1 workspace in Bitbucket.…
0
votes
1 answer

How to connect azure devops and bitbucket using 2 step verification

I currently have bitbucket cloud connected to azure-devops using OAuth authentication as described in the doc - https://learn.microsoft.com/en-us/azure/devops/pipelines/repos/bitbucket?view=azure-devops&tabs=yaml I want to enable 2 step verification…
ninja666
  • 29
  • 8
0
votes
1 answer

Avoiding 2nd semantic-release Commit on Bitbucket Cloud

I'm using Bitbucket Cloud and everything works wonderfully using pipelines, except I always get an extra commit after my release/tag commit, as follows: Notes added by 'git notes add' -- author: semantic-release-bot Is there any way to avoid…
Sammy
  • 3,395
  • 7
  • 49
  • 95
0
votes
0 answers

sonarqube-community-branch-plugin - pull request decorations are not working

I am trying to make SonarQube 8.5 to work with BitBucket Cloud PR, so for AML settings I have used: BitBucket Server Bitbucket Server URL: https://api.bitbucket.org/ Personal Access token: I have generated it echo -n user:pass | base64 In my…
0
votes
2 answers

Drone ignores pullrequest:created webhook sent from bitbucket cloud

My drone CI server configured a webhook for several events on a private bitbucket cloud repository, among those events are several pull request related events (create, update, decline and more). I configure the following pipeline on my repository #…
0
votes
1 answer

Using Bitbucket's $BITBUCKET_TAG variable in an IF statement

I've been scratching my head all day trying to figure this out. Could somebody point me out as to why - if [ $BITBUCKET_BRANCH == 'master' ]; echo "Do master branch stuff"; fi works just fine when trying to run some code if the branch I pushed to is…
0
votes
1 answer

How to get all commits in a repository along with the corresponding branch name?

I am faced with a problem of getting all commits in a repository with the branch name too along with the commit ID . While there exists one endpoint that lists all the commits…
u0311
  • 33
  • 4
0
votes
1 answer

Can you host a bitbucket pipeline internally?

We are currently using bitbucket cloud to host our grails-app repository. We want to set up some pipelines to do things like run unit tests and make sure the app compiles before being able to merge a branch to master. I know this can pretty easily…
0
votes
1 answer

how to add 2 java projects to the same bit bucket repository

I created a new bit bucket Repo,and a new Java project and I linked them,now I can commit and push and do all those operations. Now I created a second hello world Java project and when I try to push to the same bit bucket Repo,I get "push…
abc123
  • 129
  • 2
  • 10