Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Is there integration between JIRA Core Cloud and Bitbucket?

Sean Duvall
December 4, 2019

Does Bitbucket integrate / work with JIRA Core Cloud?  

Example use case #1:  I want to link a JIRA Core Cloud issue, with a repository.

Example use case #2:  I want to link a JIRA Core Cloud issue, with a specific file in a repository.

Example use case #3:  I want to link a JIRA Core Cloud issue, with a specific commit in a repository.

 

When I use the verb "Link", I mean issue links, like those that already exist within JIRA --- but any means, feature, or mechanic that exists that meets those use cases would be awesome.

My understanding is that as of April 2019, Bitbucket will integrate with JIRA Software but not with JIRA Core.

https://community.atlassian.com/t5/Jira-questions/Connect-Jira-Core-Server-with-BitBucket-Cloud/qaq-p/1067674

 

Edit:  I'm anticipating that I'm going to have to convert my business type JIRA Core projects to a JIRA Software project.  That wouldn't be the end of the world, but it would be a bit of a drag.  

1 answer

1 accepted

1 vote
Answer accepted
RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
August 11, 2013

try something like this with Javascript

<script type="text/javascript">
jQuery(document).ready(function($) {
	JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {
		limitSize();
	});
		limitSize();
	
	function limitSize(){
				
				$('#customfield_13820').keyup(function(e){				
					var decimalValue = $("#customfield_13820").val();
					if(decimalValue < 1 || decimalValue > 14){
						alert("Value should be 1-14");						
						return false;
					}					
			});		
	}	
	
});
</script>

Mikkel Kragelund Nielsen
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
August 11, 2013

This dosen't work. What JIRA version are you on. Im on 5.2.9.

I can get the alert message to show if I delete everything else:

<script type="text/javascript">
alert("Value should be 1-14");
</script>
RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
August 11, 2013

we are using jira 5.2.5,

where you have added javascript?

i suggest to add as it by changing custom field id on footer.jsp or load it add webresource in any plugin

Mikkel Kragelund Nielsen
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
August 14, 2013

I have just added it to the description of the field.

RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
August 14, 2013

field description on field configuration right?

Vinod Honnalli
Contributor
January 27, 2016

The above code is not working.

can anyone suggest the right code??

Suggest an answer

Log in or Sign up to answer