signaloid-cli repos builds
List builds for a specific repository.
Synopsis
signaloid-cli repos builds --repo-id <id> [options]
Options
| Option | Required | Description |
|---|---|---|
--repo-id <id> | Yes | Repository ID |
--from <iso> | No | Filter builds from this timestamp (ISO 8601) |
--to <iso> | No | Filter builds to this timestamp (ISO 8601) |
--start-key <key> | No | Pagination cursor |
--count <n> | No | Number of items to fetch using pagination |
Description
Lists all builds associated with a specific repository. You can filter results by date range, limit the number of results, and paginate through large result sets using a cursor-based approach.
Examples
List all builds for a repository:
signaloid-cli repos builds --repo-id rep_abc123
Filter by date range:
signaloid-cli repos builds \
--repo-id rep_abc123 \
--from 2025-01-01T00:00:00Z \
--to 2025-01-31T23:59:59Z
Limit results:
signaloid-cli repos builds --repo-id rep_abc123 --count 10
Pagination:
# First page
signaloid-cli repos builds --repo-id rep_abc123
# Next page using cursor from previous response
signaloid-cli repos builds \
--repo-id rep_abc123 \
--start-key "cursor_from_previous_response"
Notes
- Results are typically ordered by creation date (newest first)
- Use pagination for repositories with many builds
- Date filters use ISO 8601 format (e.g.,
2025-01-13T12:00:00Z) - The
--countoption helps control response size for large result sets
See Also
- signaloid-cli builds - Create and manage builds
- signaloid-cli repos get - Get repository details
- signaloid-cli repos - Repository management overview