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
Request Body
Section titled “Request Body”CreateActionWorkflowDispatch represents the payload for triggering a workflow dispatch event
object
inputs
object
key
additional properties
string
ref
required
string
Example
refs/heads/mainCreateActionWorkflowDispatch 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”No Content
Media typeapplication/json
APIError is error format response
Media typeapplication/json
Headers
Section titled “Headers”message
string
url
string
APIForbiddenError is a forbidden error response
Media typeapplication/json
Headers
Section titled “Headers”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
Headers
Section titled “Headers”message
string
url
string