pocketci pipeline pause
Pause a pipeline to prevent new runs.
bash
pocketci pipeline pause <name> --server <url> [options]Options
--server— server URL (required; e.g.,http://localhost:8080)--auth-token— JWT auth token (env:CI_AUTH_TOKEN)--config-file— auth config file path (env:CI_AUTH_CONFIG; default:~/.pocketci/auth.config)
Example
bash
pocketci pipeline pause my-pipeline --server http://localhost:8080Authentication
With OAuth-enabled servers, authenticate first with pocketci login:
bash
pocketci login -s https://ci.example.com
pocketci pipeline pause my-pipeline -s https://ci.example.comOr provide a token directly:
bash
pocketci pipeline pause my-pipeline \
--server https://ci.example.com \
--auth-token eyJhbGciOiJIUzI1NiIs...