One GitHub PR to squash onto the backport branch. `repo` is `owner/repo`. That is `paradigmxyz/reth` for upstream backports and the Base fork for patches that should not be opened upstream.
| 46 | |
| 47 | @dataclass(frozen=True) |
| 48 | class PatchPr: |
| 49 | """One GitHub PR to squash onto the backport branch. |
| 50 | |
| 51 | `repo` is `owner/repo`. That is `paradigmxyz/reth` for upstream backports |
| 52 | and the Base fork for patches that should not be opened upstream. |
| 53 | """ |
| 54 | |
| 55 | number: int |
| 56 | repo: str |
| 57 | url: str |
| 58 | title: str |
| 59 | head: str |
| 60 | commits: tuple[str, ...] |
| 61 | |
| 62 | |
| 63 | def parse_pr_spec(spec: str) -> PrSpec: |
no outgoing calls