This problem started about two weeks ago. Steps to reproduce:
1) From a Jira card, select Create Branch
2) Create the branch in Bitbucket Cloud
3) Return to Jira
4) The Jira card no longer knows the branch has been created
4a) This persists even when I git push or git pull
5) Committing and pushing an empty commit causes Jira to recognize the existence of the branch.
Please revert to previous behavior where the Jira card was aware of the branch if it was created through the Jira card. This is hard-stopping my coding agents, because they have a rule not to work stories unless on a branch associated with the story.
If your Jira card is not recognizing a Bitbucket branch until you push an empty commit then the issue is usually caused by delayed branch indexing or branch naming Netmirror that does not include the Jira issue key.
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unable to reproduce on my end, branch updated though it took a minute.
This points to an issue with webhook delivery or Jira DVCS indexing latency on your specific workspace rather than a global breaking change.
If the issue persists after a DVCS resync, you'll likely need Atlassian Support.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the response!
The "it took a minute" is exactly the issue. What used to be synchronous is now asynchronous. It's a change that broke a previously-working workflow.
However, given that your perspective seems to be that this is not a problem, we've changed the gate. For anyone else with this issue, the approach below seems performant -- local reads verifying successful git checkout of an appropriately-named branch. Note that it works because the Jira issue key is the prefix of a branch.
.git\HEAD → extract branch, confirm it contains the story keyrefs\heads\... and refs\remotes\origin\... → confirm both exist and SHAs agreejira_get_issue_development_info entirely
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah, absolutely.
Under normal, expected behaviour a branch must display in the Jira Development Panel as soon as it is created even if it has zero commits pushed to it.
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.