MCPcopy Create free account
hub / github.com/base/base / PatchPr

Class PatchPr

etc/scripts/local/reth_release.py:48–60  ·  view source on GitHub ↗

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.

Source from the content-addressed store, hash-verified

46
47@dataclass(frozen=True)
48class 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
63def parse_pr_spec(spec: str) -> PrSpec:

Callers 3

fetch_prFunction · 0.85

Calls

no outgoing calls