Search⌘ K
AI Features

Listen for Events from GitHub

Explore how to listen for GitHub events by configuring webhooks that trigger Tekton pipelines. Learn to expose EventListener services with external URLs and integrate GitHub repository events to automate CI/CD workflows in Kubernetes.

Configure the URL for EventListener

GitHub webhooks allow us to build or set up integrations that subscribe to certain events on GitHub. When one of these events is triggered, it’ll send an HTTP POST payload to the webhook’s configured URL. We’ll use GitHub webhooks to trigger our Tekton build-deploy Pipeline. We’ll need a URL for the EventListener service to which ...