hello
in my continuing quest to automate a Pull Request from a shell script, I am trying to do a PR, but getting the following error:
I have tried using:
-H "Content-Type: application/json" -H "X-Atlassian-Token:no-check"
But this hasn't solved the issue. I can't see any other avenues to try in the documentation. Anyone have any ideas? Is this even possible?
thanks a lot!
here is the full Curl request if that helps
curl -X POST https://MYHOST.cloud/projects/AP/repos/$REPO/pull-requests \
-u $USERNAME:$PASSWORD -H "Content-Type: application/json" -H "X-Atlassian-Token:no-check" --request POST \
--data '{
"title": "$COMMIT_TEXT",
"description": "automated PR. $COMMIT_TEXT",
"state": "OPEN",
"open": true,
"closed": false,
"fromRef": {
"id": "$NEW_BRANCH"
"repository" {
"slug": "$REPO",
"name": null,
"project": {
"key": "AP"
}
}
},
"toRef": {
"id": "develop",
"repository": {
"slug": "$REPO",
"name": null,
"project": {
"key": "AP"
}
}
},
"locked":false
}'
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.