Hi,
I'm trying to generate a list of commit messages between either two branches or two commits for the purposes of generating release notes as part of our CI/CD pipeline.
Ideally, we want a text version of an output like this
https://bitbucket.org/ged/ruby-pg/branches/compare/default%0Dstable
So is example, this page gives us all the commit messages between the two branches default and stable
I've found this documentation
But it is way too verbose for my use case.
HI Frank,
Is the commits endpoint that should give you the information you're looking for. It is going to return it as JSON. If you're really only interested in the commit messages you can customize the fields that come back. See https://developer.atlassian.com/bitbucket/api/2/reference/meta/partial-response.
Combining those things, to get the commit messages between a feature branch and the master branch might look something like this:
Which gives you just the commit message and a link to follow (the API is paginated).
Any idea how to do this on Bitbucket Server?
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.
Not sure if it's a proper fix but I ended up implementing something like this as an Azure Function using C# and my CI/CD system just calls this.
https://gist.github.com/frankfuu/e1350ec8d18de284e4c76507ff0c2d6c
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.