The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

Create Pull Request Automatically

ILY
November 10, 2017

Is it possible to create automatic Pull Request in bitbucket server after a sprint is closed in Jira server

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Tarun Sapra
Community Champion
November 10, 2017

You can use webhook in JIRA to do a post REST call onto the BitBucket server. The webhook call can be set to be triggered only on the "sprint closed" event.

Tarun Sapra
Community Champion
November 10, 2017

Sample here

This API can also be invoked via a user-centric URL when addressing repositories in personal projects.

Create a new pull request between two branches. The branches may be in the same repository, or different ones. When using different repositories, they must still be in the same {@link Repository#getHierarchyId() hierarchy}.

The authenticated user must have REPO_READ permission for the "from" and "to"repositories to call this resource.

Example request representations:

  • application/json [collapse]

     

    EXAMPLE
    {
        "title": "Talking Nerdy",
        "description": "It’s a kludge, but put the tuple from the database in the cache.",
        "state": "OPEN",
        "open": true,
        "closed": false,
        "fromRef": {
            "id": "refs/heads/feature-ABC-123",
            "repository": {
                "slug": "my-repo",
                "name": null,
                "project": {
                    "key": "PRJ"
                }
            }
        },
        "toRef": {
            "id": "refs/heads/master",
            "repository": {
                "slug": "my-repo",
                "name": null,
                "project": {
                    "key": "PRJ"
                }
            }
        },
        "locked": false,
        "reviewers": [
            {
                "user": {
                    "name": "charlie"
                }
            }
        ]
    }
ILY
November 13, 2017

i tried curl -u user:pwd -H "Content-Type: application/json" https://localhost:7990/rest/api/1.0/projects/TES/repos/myrepo/pull-requests -X POST --data '{"title":"test","description":"test","fromRef":{"id":"refs/heads/master","repository":{"slug":"test-repo","name":null,"project":{"key":"myProject"}}},"toRef":{"id":"refs/heads/dev","repository":{"slug":"myrepo","name":null,"project":{"key":"TES"}}}}'
 

 

But it doesn't work

TAGS
AUG Leaders

Atlassian Community Events