Skip to content

Commit 50e3b01

Browse files
committed
chore: step to report remnant references
1 parent b832097 commit 50e3b01

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/rename-module.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ jobs:
2727
go mod edit -module github.com/ava-labs/go-ethereum;
2828
find . -iname '*.go' -o -iname '*.txt' | xargs sed -i -E \
2929
's|(["`]github\.com/)ethereum/go-ethereum|\1ava-labs/go-ethereum|g';
30+
31+
- name: Remnant references
32+
run: |
33+
find . -type f | \
34+
xargs grep -In github.com/ethereum/go-ethereum | \
35+
grep -v "https://github.com/ethereum/go-ethereum"
3036
3137
- name: Set up Go
3238
uses: actions/setup-go@v5

0 commit comments

Comments
 (0)