> ## Documentation Index
> Fetch the complete documentation index at: https://konduktor-docs.yakko.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Github Webhook

> Handle incoming GitHub webhook events.



## OpenAPI

````yaml /openapi.json post /api/webhooks/github
openapi: 3.1.0
info:
  title: Konduktor
  version: 0.1.0
servers:
  - url: http://localhost:8080
    description: Local instance (default)
security: []
paths:
  /api/webhooks/github:
    post:
      tags:
        - webhooks
      summary: Github Webhook
      description: Handle incoming GitHub webhook events.
      operationId: github_webhook_api_webhooks_github_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Github Webhook Api Webhooks Github Post

````