GitHub
Update Release
GitHub
Update Release
POST
/
projects
/
{project_id}
/
actions
/
#GITHUB_UPDATE_RELEASE
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#GITHUB_UPDATE_RELEASE' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "GITHUB_UPDATE_RELEASE",
"parameters": {
"owner": "<string>",
"repo": "<string>",
"id": "<string>",
"tag_name": "<string>",
"target_commitish": "<string>",
"body": "<string>",
"draft": "true",
"prerelease": "true",
"discussion_category_name": "<string>",
"generate_release_notes": "true"
}
}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Your Paragon Project ID
Body
application/json
Response
200
Success
Was this page helpful?
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#GITHUB_UPDATE_RELEASE' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "GITHUB_UPDATE_RELEASE",
"parameters": {
"owner": "<string>",
"repo": "<string>",
"id": "<string>",
"tag_name": "<string>",
"target_commitish": "<string>",
"body": "<string>",
"draft": "true",
"prerelease": "true",
"discussion_category_name": "<string>",
"generate_release_notes": "true"
}
}'