Monito CLI

CI/CD Integration

Set up secretless Monito testing with an AI coding agent.

Use the AI setup flow

The current setup is documented in CI Integration. For GitHub Actions, an AI coding agent can inspect the repository, generate the workflow, register the project-scoped OIDC trust binding, and verify it without creating or exposing a Monito API key.

Complete the two one-time browser sign-ins:

monito auth login
gh auth login

Then ask the agent to run the plan, apply it, and verify the remote credential:

monito ci plan --execution blocking --auth oidc --trigger deployment \
  --environment Production --project "Storefront" --json
monito ci apply --execution blocking --auth oidc --trigger deployment \
  --environment Production --project "Storefront" --yes --json
monito ci verify --execution blocking --auth oidc --trigger deployment \
  --environment Production --project "Storefront" --remote-auth --json

plan is read-only. apply requires explicit approval before changing the repository or trust binding. --remote-auth proves GitHub's short-lived OIDC authentication without running scenarios or spending credits. Review the complete CI guide for trigger choices, cleanup, compatibility runners, and deploy webhooks.

On this page