Open the current project's runs page in the browser

## Usage

`circleci run open [flags]`

## Flags

| Flag                  | Description                                                 |
| --------------------- | ----------------------------------------------------------- |
| `-b, --branch string` | Branch name (defaults to current branch)                    |
| `--project string`    | Project slug (e.g. gh/org/repo); used for latest-run lookup |

Global flags: `-c, --config`, `--debug`, `--no-color`, `-q, --quiet` — see `circleci --help`.

## Examples

- Open runs for the current repo: 
  `circleci run open`
- Open runs filtered to the current git branch: 
  `circleci run open --current-branch`
- Open runs filtered to a specific branch: 
  `circleci run open --branch my-feature`
- Open runs filtered to a specific branch (short flag): 
  `circleci run open -b main`
- Open when your remote is on CircleCI server: 
  `circleci run open --host https://circleci.example.com`

## Details

Open the CircleCI runs page for the current project in your
default web browser.

The project is inferred from the current git repository's remote.
Supports GitHub, Bitbucket, and GitLab remotes.

Use --current-branch or --branch/-b to filter runs to a specific branch.

