Is it possible to restrict the use of an issue in jira server in only one repository in bitbucket, in other words we can't use the issue in other repositories ?
It's possible, but it's not easy.
You'd have to write your own global push hook, similar to Yet Another Commit Checker's global hook.
In your hook's onReceive() method you would extract JIRA ticket references from the commit messages, and then use Bitbucket's built-in JIRA index to see if any previous commits already referenced them.
@ComponentImport
private final com.atlassian.bitbucket.idx.CommitIndex commitIndex;
In particular, you would call the CommitIndex.findByProperty() method to see if any commits in any repos referred to the given JIRA ticket:
String jiraKey = "TKT-123";
PageRequest pr = new PageRequestImpl(0, 999);
Page<IndexedCommit> pageResult;
pageResult = commitIndex.findByProperty(
JiraConstants.IDX_PROP_ISSUE_KEYS, jiraKey, false, pr);
Note: a naive implementation of this would potentially block all new commits that referenced "UTF-8" or "ISO-9000", since Bitbucket assumes those are JIRA tickets. Bitbucket does not check if a given "ticket-like" string in a commit message actually exists in your JIRA instance. It just indexes all "ticket-like" strings regardless.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.