Skip to content

Commit

Permalink
Merge branch 'main' into tedi/multil2
Browse files Browse the repository at this point in the history
Signed-off-by: Tedi Mitiku <[email protected]>
  • Loading branch information
tedim52 authored Jun 17, 2024
2 parents ca3407d + 16f5ed8 commit 75753d0
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 5 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/conventional-pr-title-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Check PR title for conventional commits
name: Check PR title
on:
pull_request_target:
types:
- opened
- reopened
- edited
- synchronize

# cancel redundant builds
concurrency:
group: "title-checker-${{ github.head_ref }}"
cancel-in-progress: true

jobs:
title_check:
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16 changes: 11 additions & 5 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
name: release-please

on:
push:
branches: [main]
branches:
- main
permissions:
contents: write
pull-requests: write

name: release-please
jobs:
release-please:
name: "Release please"
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
- name: Run Release Please
uses: googleapis/release-please-action@v3
with:
token: ${{ secrets.PAT }}
release-type: simple
package-name: kurtosis
include-v-in-tag: false
package-name: optimism-package
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Changelog

## 1.0.0 (2024-06-17)


### Features

* add funding contract deployer ([d42bd33](https://github.com/ethpandaops/optimism-package/commit/d42bd3397762118f2e9fd6fab094198493e9cac6))
* add names to run-sh ([82dabe4](https://github.com/ethpandaops/optimism-package/commit/82dabe4c40254dab6e50d4fa1365c4822f822fa9))
* add op_batcher + op_deployer ([55c42e4](https://github.com/ethpandaops/optimism-package/commit/55c42e4fb28faf32c51f2e7e3d197d20f0d28e12))
* add op_batcher + op_deployer ([1638844](https://github.com/ethpandaops/optimism-package/commit/163884494717591dda0a302fafcb690fc6a2051d))
* add op_geth ([aa415e8](https://github.com/ethpandaops/optimism-package/commit/aa415e850c482177d2e96d5f15718a7dd17227bc))
* add op_node ([05b45c2](https://github.com/ethpandaops/optimism-package/commit/05b45c2000e70199ee049dfde97ba7f82459cce5))
* add op-blockscout ([7f79f53](https://github.com/ethpandaops/optimism-package/commit/7f79f53c152135ec357fdb04cad49f754b2b313c))
* add op-reth ([ec641db](https://github.com/ethpandaops/optimism-package/commit/ec641dbc454f9c4f7ae6e7f7906730bbcc02e46f))
* add optimism-contract-deployer image builder ([9580baf](https://github.com/ethpandaops/optimism-package/commit/9580baf415b5394a4b5e76cbe89b97213c4f2fcb))
* add pr checker and releaser ([42fcd65](https://github.com/ethpandaops/optimism-package/commit/42fcd659657071c8bdb43c4ba0123a39de6c468a))
* basic parsing ([287cfbf](https://github.com/ethpandaops/optimism-package/commit/287cfbfb055d404cf88dca2d921616a77c0f4bd5))


### Bug Fixes

* move all references of kurtosis-tech -&gt; ethpandaops ([ef05cc4](https://github.com/ethpandaops/optimism-package/commit/ef05cc4aa2283a0b3f18a2b72b573da6852ff353))
* release-please ([5ba892a](https://github.com/ethpandaops/optimism-package/commit/5ba892a9b2440bd2b0f7a1fdf230f79e1ceea9f7))
* update upstream contract deployment image ([052aafd](https://github.com/ethpandaops/optimism-package/commit/052aafd10f5d44ecf4e60e13a280554a1363fe2d))
4 changes: 4 additions & 0 deletions src/contracts/contract_deployer.star
Original file line number Diff line number Diff line change
Expand Up @@ -154,25 +154,29 @@ def deploy_l2_contracts(
)

l2oo_address = plan.run_sh(
name="read_l2oo_address",
description="Getting the L2OutputOracleProxy address",
run="jq -r .L2OutputOracleProxy /network-configs/kurtosis.json | tr -d '\n'",
files={"/network-configs": op_genesis.files_artifacts[0]},
)

l1_bridge_address = plan.run_sh(
name="read_l1_bridge_address",
description="Getting the L1StandardBridgeProxy address",
run="jq -r .L1StandardBridgeProxy /network-configs/kurtosis.json | tr -d '\n'",
files={"/network-configs": op_genesis.files_artifacts[0]},
)

l1_deposit_start_block = plan.run_sh(
name="read_l1_deposit_start_block",
description="Getting the L1StandardBridgeProxy address",
image="badouralix/curl-jq",
run="jq -r .genesis.l1.number /network-configs/rollup.json | tr -d '\n'",
files={"/network-configs": op_genesis.files_artifacts[0]},
)

l1_portal_contract = plan.run_sh(
name="read_l1_portal_contract",
description="Getting the L1 portal contract",
run="jq -r .OptimismPortal /network-configs/kurtosis.json | tr -d '\n'",
files={"/network-configs": op_genesis.files_artifacts[0]},
Expand Down

0 comments on commit 75753d0

Please sign in to comment.