diff --git a/README.md b/README.md index 30b7f8c..cc364a9 100644 --- a/README.md +++ b/README.md @@ -251,6 +251,7 @@ window you've covered up. | `--headless` | off | headless caps at 60fps, so the frame-rate bench means less | | `--timeout` | `60000` | ms a single sample may take before the run fails | | `--skip-build` | off | re-use an existing build | +| `--include-prs` | off | record the PRs that landed since the previous result set in the run's notes (from git history; shown in the results app) | ### Query params diff --git a/results/app/components/env.gts b/results/app/components/env.gts index f374ffb..c30ae90 100644 --- a/results/app/components/env.gts +++ b/results/app/components/env.gts @@ -2,6 +2,7 @@ import { formatDuration, msOfFrameAt, throttleLabel } from "#utils"; import type { TOC } from "@ember/component/template-only"; import type { ResultSet } from "#types"; +import type { DisplayPr } from "#utils"; function first8(str: string) { return str.slice(0, 8); @@ -71,6 +72,22 @@ export const Info = satisfies TOC<{ date: string; @@ -78,4 +95,5 @@ export const Info =