Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Manual Trigger

Setting trigger.manual: true makes a pipeline fireable on demand:

bento trigger fire <pipeline-name>

Combine with another trigger type to support both automatic and on-demand firing:

# Fires automatically on every PR, and also on demand
trigger:
  manual: true
  github:
    - pull_request.opened
agent: reviewer

Example: smoke test on demand

name: ask-knowledge-smoke
trigger:
  manual: true
  repo: acme/my-project
agent: solver
prompt: |
  Run the smoke tests and report pass/fail.
sandbox:
  backend: docker
orchestrator: false
bento trigger fire ask-knowledge-smoke