Skip to content

Commit c48654f

Browse files
committed
merge
2 parents d8b4053 + b081297 commit c48654f

File tree

64 files changed

+3980
-1429
lines changed

Some content is hidden

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

64 files changed

+3980
-1429
lines changed

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Which type of ethereum testnet to run locally (pow|pos)
22
ETH_TESTNET_TYPE="pow"
3+
# Preset for Ethereum PoS network configuration (minimal|mainnet)
4+
ETHEREUM_POS_NETWORK_PRESET="minimal"
35

46
# SP1_PROVER={network|local|mock}
57
SP1_PROVER=mock

.github/actions/e2e-setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ runs:
7676
run: |
7777
echo "deb [trusted=yes] https://apt.fury.io/kurtosis-tech/ /" | sudo tee /etc/apt/sources.list.d/kurtosis.list
7878
sudo apt update
79-
sudo apt install kurtosis-cli=1.10.3 # Must match the kurtosis library version we use in the e2e tests
79+
sudo apt install kurtosis-cli=1.11.2 # Must match the kurtosis library version we use in the e2e tests
8080
kurtosis engine start
8181
kurtosis analytics disable
8282
echo "$(dirname $(which kurtosis))" >> $GITHUB_PATH

.github/workflows/pr.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: pr
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
types: [opened, synchronize, reopened, edited]
8+
9+
jobs:
10+
title-validation:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: conventional-commit
14+
uses: ytanikin/[email protected]
15+
with:
16+
task_types: '["feat","fix","docs","test","ci","refactor","chore","revert","imp","deps"]'
17+
add_label: 'false'

0 commit comments

Comments
 (0)