github.com/oam-dev/kubevela@v1.9.11/references/docgen/def-doc/workflowstep/webhook.eg.md (about)

     1  ```yaml
     2  apiVersion: core.oam.dev/v1beta1
     3  kind: Application
     4  metadata:
     5    name: first-vela-workflow
     6    namespace: default
     7  spec:
     8    components:
     9    - name: express-server
    10      type: webservice
    11      properties:
    12        image: oamdev/hello-world
    13        port: 8000
    14    workflow:
    15      steps:
    16        - name: express-server
    17          type: apply-application
    18        - name: webhook
    19          type: webhook
    20          properties:
    21            url:
    22              value: <your webhook url>
    23  ```