Skip to content

Commit fb6cee4

Browse files
committed
Merge branch 'main' of github.com:NethermindEth/pluto into createdkg
2 parents 1ccaa57 + 2943ff5 commit fb6cee4

45 files changed

Lines changed: 3780 additions & 534 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/claude-code-review.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,20 @@ jobs:
3030
with:
3131
fetch-depth: 1
3232

33+
- name: Cache Go reference
34+
uses: actions/cache@v4
35+
with:
36+
path: charon
37+
key: charon-go-ref-v1.7.1
38+
39+
- name: Prepare Go reference checkout
40+
run: |
41+
if [ ! -d charon/.git ] || ! git -C charon describe --tags --exact-match HEAD 2>/dev/null | grep -qx 'v1.7.1'; then
42+
rm -rf charon
43+
git clone --branch v1.7.1 --depth 1 https://github.com/ObolNetwork/charon.git charon
44+
fi
45+
git -C charon rev-parse HEAD
46+
3347
- name: Run Claude Code Review
3448
id: claude-review
3549
uses: anthropics/claude-code-action@v1
@@ -41,4 +55,3 @@ jobs:
4155
prompt: '/code-review:code-review ${{ github.repository }}/pull/${{ github.event.pull_request.number }}'
4256
# See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
4357
# or https://code.claude.com/docs/en/cli-reference for available options
44-

.github/workflows/claude.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,20 @@ jobs:
3030
with:
3131
fetch-depth: 1
3232

33+
- name: Cache Go reference
34+
uses: actions/cache@v4
35+
with:
36+
path: charon
37+
key: charon-go-ref-v1.7.1
38+
39+
- name: Prepare Go reference checkout
40+
run: |
41+
if [ ! -d charon/.git ] || ! git -C charon describe --tags --exact-match HEAD 2>/dev/null | grep -qx 'v1.7.1'; then
42+
rm -rf charon
43+
git clone --branch v1.7.1 --depth 1 https://github.com/ObolNetwork/charon.git charon
44+
fi
45+
git -C charon rev-parse HEAD
46+
3347
- name: Run Claude Code
3448
id: claude
3549
uses: anthropics/claude-code-action@v1
@@ -48,4 +62,3 @@ jobs:
4862
# See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
4963
# or https://code.claude.com/docs/en/cli-reference for available options
5064
# claude_args: '--allowed-tools Bash(gh pr:*)'
51-

0 commit comments

Comments
 (0)