List your recent runs grouped by project

## Usage

`circleci my runs [flags]`

Aliases: `circleci my run`

## Flags

| Flag          | Description                                                                       |
| ------------- | --------------------------------------------------------------------------------- |
| `--jq string` | Process values from the response using jq syntax (see `circleci help formatting`) |
| `--json`      | Output as JSON                                                                    |
| `--limit int` | Maximum number of runs to fetch [default: 20] (default 20)                        |

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

## Examples

- List your recent runs across all projects: 
  `circleci my runs`
- Show more results: 
  `circleci my runs --limit 50`
- Output as JSON for scripting: 
  `circleci my runs --json`
- Pull out just the run IDs with jq: 
  `circleci my runs --json --jq '.[].id'`

## Details

List recent runs you triggered, across every project you have access to.

This is the personal counterpart to "circleci run list": rather than a
single project, it shows your runs everywhere, in the order the API
returns them, with the project of each run in its own column.

JSON: an array of runs, each { project, project_id, id, phase, outcome,
current_outcome, branch, tag, revision, created_at }, where project is
the run's "org/repo" repository (when known) and project_id its UUID.

