We have implemented a Jenkins job that uses Stash REST API to create a repository, populate with a standard .gitignore file, and a default README.md file. The job then creates a standardized set of branch permissions.
We want to enforce that all repositories are created using this Jenkins job. Unfortunately, some project admins continue to use the "Create Repository" link on their project page and end up creating repositories that do not conform to our standards.
I would like to remove the "Create Repository" link from the UI so that users MUST use our Jenkins job to create the repository according to our standards.
Is there a template file somewhere that I can update to get rid of the "Create Repository" link and possibly add a link to our Jenkins job?
Hi,
You can only disable the creation of personal repositories by configuration (feature.personal.repos=false in Stash's/Bitbucket Servers properties file). To not allow the creation of new repositories in the UI, you would have to write a plug-in. I would suggest to use a servlet filter for "projects/*/repos?create" and then show a page with a warning that repositories should be created through your Jenkins job:
httpResponse.sendRedirect("/your-page");
Of course, there are also commercial plug-ins available that can help you here (e.g., Repository Templates and ScriptRunner for Bitbucket).
Hope that helps.
Best regards,
Michael
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.