-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathfork.yaml
More file actions
105 lines (92 loc) · 2.92 KB
/
fork.yaml
File metadata and controls
105 lines (92 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Uses https://github.com/protolambda/forkdiff to generate a diff overview index.html page.
# To use:
# 1. install forkdiff: `go install github.com/protolambda/forkdiff@latest`
# 2. run `forkdiff`
title: "SeismicSystems/seismic-reth" # Define the HTML page title
logo: "logo.png"
footer: | # define the footer with markdown
SeismicSystems' [seismic-reth](https://github.com/SeismicSystems/seismic-reth) fork overview - created with [Forkdiff](https://github.com/protolambda/forkdiff)
# We compare the fork against the base branch, which matches the upstream repo's main branch
# at the point where the fork was created.
base:
name: reth
url: https://github.com/SeismicSystems/seismic-reth
ref: refs/remotes/origin/main
fork:
name: seismic-reth
url: https://github.com/SeismicSystems/seismic-reth
ref: refs/remotes/origin/seismic
def:
title: "Seismic-Reth fork diff"
description: | # description in markdown
- Original reth codebase: [`https://github.com/paradigmxyz/reth`](https://github.com/paradigmxyz/reth).
- Seismic reth fork: [`https://github.com/SeismicSystems/seismic-reth`](https://github.com/SeismicSystems/seismic-reth).
sub:
- title: "Seismic crate"
description: |
TODO
sub:
- title: "evm"
globs:
- "crates/seismic/evm/**"
- title: "node"
globs:
- "crates/seismic/node/**"
- title: "rpc"
globs:
- "crates/seismic/rpc/**"
- title: "primitives"
globs:
- "crates/seismic/primitives/**"
- title: "txpool"
globs:
- "crates/seismic/txpool/**"
- title: "chainspec"
globs:
- "crates/seismic/chainspec/**"
- "crates/seismic/hardforks/**"
- title: "misc"
globs:
- "crates/seismic/**"
- title: "Crates"
description: |
Changes to other crates in the repo.
sub:
- title: "trie"
globs:
- "crates/trie/**"
- title: "storage"
globs:
- "crates/storage/**"
- title: "Docs"
description: |
Changes to documentation files.
sub:
- title: "markdown docs"
globs:
- "**/*.md"
- "**/*.mdx"
- title: "Tests"
description: |
tests ^.^
sub:
- title: "tests"
globs:
- "**/tests/**"
- "testing/**"
- title: "test utils"
globs:
- "crates/e2e-test-utils/**"
- title: "CICD"
description: |
Changes to CICD workflows to support our custom testing and deployment.
sub:
- title: "Github workflows"
globs:
- ".github/**"
- ".circleci/**"
# files can be ignored globally, these will be listed in a separate grayed-out section,
# and do not count towards the total line count.
ignore:
- "**/Cargo.lock"
- "fork.yaml"