forked from ethpandaops/optimism-package
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into tedi/multil2
Signed-off-by: Tedi Mitiku <[email protected]>
- Loading branch information
Showing
4 changed files
with
62 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 -> 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)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters