Can Bitbucket automatically create issues from code annotations on commits?
I'm looking for a way to automatically create issues within Bitbucket.org for in-code annotations. E.g. @B开发者_JAVA技巧UG "Some bug text" should be added as an issue within bitbucket repo when commited.
This is something that should be handled by a hook, and AFAIK, Bitbucket doesn't support those.
You could keep a local mirror that pulls every now and then (using a cronjob) and in a changegroup
hook examines the incoming changes, then using Bitbucket's Issues API, creates an issue.
You can discuss and VOTE UP for this feature on bitbucket tracker - Create an issue from a commit message (BB-5107)
精彩评论