Skip to content

Activity and Checks

Inspect pull request activity and build checks.

Global options available on all PR commands: --json, --no-color, -w, --workspace, -r, --repo.

Show a pull request activity log.

Terminal window
bb pr activity <id> [options]
ArgumentDescription
idPull request ID
OptionDescription
--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
--jsonOutput as JSON
Terminal window
# View activity for PR #42
bb pr activity 42
# Filter to comment and approval events
bb pr activity 42 --type comment,approval
# Limit results
bb pr activity 42 --limit 10
# Get activity as JSON
bb pr activity 42 --json
  • --limit is enforced across paginated activity responses

Show CI/CD checks and build status for a pull request.

Terminal window
bb pr checks <id> [options]
ArgumentDescription
idPull request ID
OptionDescription
-w, --workspace <workspace>Workspace
-r, --repo <repo>Repository
--jsonOutput as JSON
Terminal window
# View checks for PR #42
bb pr checks 42
# View checks in a specific repository
bb pr checks 42 -w myworkspace -r myrepo
# Get checks as JSON
bb pr checks 42 --json