Activity and Checks
Inspect pull request activity and build checks.
Global options available on all PR commands: --json, --no-color, -w, --workspace, -r, --repo.
bb pr activity
Section titled “bb pr activity”Show a pull request activity log.
bb pr activity <id> [options]Arguments
Section titled “Arguments”| Argument | Description |
|---|---|
id | Pull request ID |
Options
Section titled “Options”| Option | Description |
|---|---|
--limit <number> | Maximum number of activity entries (default: 25) |
--type <types> | Filter by activity type (comma-separated) |
-w, --workspace <workspace> | Workspace |
-r, --repo <repo> | Repository |
--json | Output as JSON |
Examples
Section titled “Examples”# View activity for PR #42bb pr activity 42
# Filter to comment and approval eventsbb pr activity 42 --type comment,approval
# Limit resultsbb pr activity 42 --limit 10
# Get activity as JSONbb pr activity 42 --json--limitis enforced across paginated activity responses
bb pr checks
Section titled “bb pr checks”Show CI/CD checks and build status for a pull request.
bb pr checks <id> [options]Arguments
Section titled “Arguments”| Argument | Description |
|---|---|
id | Pull request ID |
Options
Section titled “Options”| Option | Description |
|---|---|
-w, --workspace <workspace> | Workspace |
-r, --repo <repo> | Repository |
--json | Output as JSON |
Examples
Section titled “Examples”# View checks for PR #42bb pr checks 42
# View checks in a specific repositorybb pr checks 42 -w myworkspace -r myrepo
# Get checks as JSONbb pr checks 42 --json