Create a workflow dispatch event
POST
/repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches
const url = 'https://gitea.com/api/v1/repos/example/example/actions/workflows/example/dispatches';const options = { method: 'POST', headers: {Authorization: 'Basic <credentials>', 'Content-Type': 'application/json'}, body: '{"inputs":{"additionalProperty":"example"},"ref":"refs/heads/main"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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" }'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”owner
required
string
Owner of the repo
repo
required
string
Name of the repo
workflow_id
required
string
Id of the workflow
Query Parameters
Section titled “Query Parameters”return_run_details
boolean
Whether the response should include the workflow run ID and URLs.
scoped_workflow_source_repo_id
integer format: int64
For a scoped workflow, the ID of the source repository providing it; omit or 0 for a repo-level workflow.
Request Body
Section titled “Request Body”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/mainResponses
Section titled “Responses”RunDetails
Media typeapplication/json
RunDetails returns workflow_dispatch runid and url
object
html_url
string format: uri
run_url
string format: uri
workflow_run_id
integer format: int64
Examplegenerated
{ "html_url": "https://example.com", "run_url": "https://example.com", "workflow_run_id": 1}No Content, if return_run_details is missing or false
APIError is error format response
Headers
Section titled “Headers”message
string
url
string
APIForbiddenError is a forbidden error response
Headers
Section titled “Headers”message
string
url
string
APINotFound is a not found empty response
APIValidationError is error format response related to input validation
Headers
Section titled “Headers”message
string
url
string