Hello,
I'm trying to create a merge check that would give exclusive rights to one branch to merge to another one. For example, to only allow merges from development to master an from no other branch. Now, the code is working fine, but for the configuration I am using bitbucket.component.branchSelector.field and I am setting param isRequired to true:
{call bitbucket.component.branchSelector.field}
{param id: 'from-test-selector' /}
{param labelText: 'Merge from Branch' /}
{param initialValue: 'refs/heads/master' /}
{param isRequired: true /}
{/call}
{call bitbucket.component.branchSelector.field}
{param id: 'to-test-selector' /}
{param labelText: 'Merge to Branch' /}
{param initialValue: 'refs/heads/master' /}
{param isRequired: true /}
{/call}
But, when I run the plugin, it has a star next to the label and it doesn't allow for the branch to be removed (no "remove branch" clickable text next to the dropdown), but if I don't choose any branch to begin with, just click Enable right away, it allows that, and then I'm getting an error since it's not returning anything. I've tried to set initial values to refs/heads/master, but the initial value (when enabling for the first time) was still "Select revision". So I would say that initialValue parameter isn't working as well (or I'm not using it right). I've also tried to get it to not allow the enabling without values by removing the initial value and also tried with setting it to null, but nothing worked. Please let me know if there is a way to get it to not allow Enabling of the merge check when there are no branches selected from the dropdown.
Best Regards
Dusan Milenkovic
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.