I want to create a pull request automatically once a new branch is added to a project. My script will take a reviewer's name and branch name and will create a branch on stash repository using git command. Is there a way for me to create a pull request through my script?Is there a stash client in similar lines as jira client? Or can it be done using stash RestAPI or Java API?
Hi Vikas,
You might be interested in http://blogs.atlassian.com/2012/11/stash-pull-requests-from-the-command-line/
Cheers,
Stefan
Thanks Stefan, I will try this. This was exactly what i was looking for.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Vikas,
Personally I would do this as a Stash plugin. Here is an example of a plugin that acts as a webhook to notify a Jenkins URL:
https://bitbucket.org/atlassian/stash-webhook-plugin
The most important class:
In Stash 2.0+ the RepositoryPushEvent has access to the RefChanges, which have a 'type' which might be ADD. For those refs you could create a PullRequest by injecting the PullRequestService and calling create.
You could also do this via REST, but then you will need a script to poll Stash for new changes.
https://developer.atlassian.com/static/rest/stash/latest/stash-rest.html#id237698
I hope this helps.
Charles
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Charles, Your first two links are not working but i got the idea. I will try the command line interface suggested by Stefan and see if it does everything which we require.
Is it possible for you to update the broken links?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Vikas,
Sorry about that. I migrated that repository to our Atlassian account. They should work now.
Charles
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.