POST
/
projects
/
{project_id}
/
actions
/
#GITHUB_CREATE_RELEASE
curl --request POST \
  --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#GITHUB_CREATE_RELEASE' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "action": "GITHUB_CREATE_RELEASE",
  "parameters": {
    "owner": "<string>",
    "repo": "<string>",
    "tag_name": "<string>",
    "target_commitish": "<string>",
    "body": "<string>",
    "draft": "true",
    "prerelease": "true",
    "discussion_category_name": "<string>",
    "generate_release_notes": "true"
  }
}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
string
required

Your Paragon Project ID

Body

application/json
action
string
default:GITHUB_CREATE_RELEASE
required
parameters
object
required

Response

200

Success