When a pull request created, I saw following remote branch created automatically,
What is the difference of these two?
BTW, I am trying to polling git to check new pull requests and automatically test them (I have no permission to change to Bitbucket server's setting to add a pull request notification plugin).
Hi,
First I want to point out that this is an internal implementation detail, and not part of our API. Anything you build that depends on these files may stop working after an upgrade to Bitbucket Server without warning. A better alternative may be to talk to your System Administrator about installing a plugin.
To answer your question, the "from" ref points to the head of the source branch of the PR. The "merge" ref points to a merge commit between the "from" ref and the head of the target branch. To understand why we track these it might help to read this blog post.
You should note that these refs are not automatically updated when a change is made to the branch. A user must view the PR in their browser for the refs to be updated. You can read this answer to understand why. You cannot rely on these refs being updated in order to pick up changes to the pull request as they happen.
Another option may be to look at our REST API - you can use this endpoint to retrieve all pull requests in a repository. From there, fromRef.latestCommit for each PR in the response will tell you the commit at the head of the source branch, similar to the "from" ref, except the value from the REST API will update automatically.
Hopefully this helps clarify things.
Cheers,
Isabella - Atlassian
Thank you very much! It is very helpful.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
If "pull-request/*/merge" is an internal API that might break at any time, what would be the proper supported way to implement the solution suggested here https://stackoverflow.com/a/32073284/1788881 in order to test the merged code instead of the source branch during PR builds?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You suggest using a plugin, but every plugin I've found for BitBucket and Jenkins integration just uses the internal API, not the REST API. They all broke on me just now, so I'm scrambling to figure out how to get pull requests built automatically.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I, probably like you @Todd Boyd have been hunting for a very long time to understand how to build Peer Review head in TeamCity from BitBucket Server. The TeamCity plugin just doesn't work, which means I have no way of integrating this to include pull-request analysis in SonarQube either.
My suggestion and next course of action is to create a micro web server in .net using nancy or embedio to enable us to integrate easily weith anything we like - and control our own destiny.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Like they "promised", they stopped generating the below reference BitBucket Server 7.0 onwards (because they switched to 2-way diff from 3-way diff.
refs/pull-requests/<ID>/merge
So, when our organization upgraded BitBucket Server to 7.6 from 6.x all pull request builds (on merge) started failing. We had to then create merge reference ourselves before building.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same thing just happened at my organization. Upgraded to 7.17 this weekend, and had to roll back again as this breaks how we test merges in our CI/CD pipeline.
It's an very useful feature to have and it's a it of a problem if it's not coming back. Certainly testing just the head of the feature branch isn't adequate, and I'm yet to see an out-the-box alternative to merge refs suggested by Atlassian?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am also interested in an out-of-the-box solution.
Bamboo can be configured to trigger a build when changes are committed. And BitBucket auto-updates a pull request when commits are pushed to the branch with an open pull request.
It shouldn't be too difficult to combine these into a solution to "auto-update the merge commit when commits are pushed to the branch with an open pull request" and "trigger a build when the merge commit of an open pull request is updated" .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We have been using the Stash Pull Request Builder plugin in Jenkins, which provides variables to build a URL for the destination repository and the source of the pull request which are configured as two separate repository references. We then do a local merge from the source into the destination during the PR build.
Way more complicated than it used to be, but it does work. YMMV on other build services.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.