Skip to content
Try Gitea Cloud ☁️ for 30 days → Accelerate your Development & Deploys!
This is the documentation of 1.26.4, which is no longer the latest release. See the latest release.

Create a workflow dispatch event

POST
/repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches
curl --request POST \
--url https://gitea.com/api/v1/repos/example/example/actions/workflows/example/dispatches \
--header 'Authorization: Basic <credentials>' \
--header 'Content-Type: application/json' \
--data '{ "inputs": { "additionalProperty": "example" }, "ref": "refs/heads/main" }'
owner
required
string

Owner of the repo

repo
required
string

Name of the repo

workflow_id
required
string

Id of the workflow

return_run_details
boolean

Whether the response should include the workflow run ID and URLs.

Media typeapplication/json

CreateActionWorkflowDispatch represents the payload for triggering a workflow dispatch event

object
inputs
object
key
additional properties
string
ref
required
string
Example
refs/heads/main

RunDetails

Media typeapplication/json

RunDetails returns workflow_dispatch runid and url

object
html_url
string
run_url
string
workflow_run_id
integer format: int64
Examplegenerated
{
"html_url": "example",
"run_url": "example",
"workflow_run_id": 1
}

No Content, if return_run_details is missing or false

Media typeapplication/json

APIError is error format response

Media typeapplication/json
message
string
url
string

APIForbiddenError is a forbidden error response

Media typeapplication/json
message
string
url
string

APINotFound is a not found empty response

Media typeapplication/json

APIValidationError is error format response related to input validation

Media typeapplication/json
message
string
url
string