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: reviewerExample: 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: falsebento trigger fire ask-knowledge-smoke
