-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
442 changed files
with
19,515 additions
and
17,597 deletions.
There are no files selected for viewing
File renamed without changes
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,19 @@ | ||
name: Check for "option.do-not-merge" Label | ||
|
||
on: | ||
pull_request: | ||
types: [labeled, unlabeled, synchronize, opened, reopened] | ||
|
||
jobs: | ||
check_label: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check for "option.do-not-merge" label | ||
id: check_label | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const labels = context.payload.pull_request.labels.map(label => label.name); | ||
if (labels.includes("option.do-not-merge")) { | ||
core.setFailed('The "option.do-not-merge" label is present. PR cannot be merged.'); | ||
} |
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,21 @@ | ||
name: "Close stale issues and PRs" | ||
on: | ||
schedule: | ||
- cron: "0 1 * * *" # Runs at 01:00 UTC every day | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v5 | ||
with: | ||
stale-issue-message: "This issue is stale because it has been open for 45 days with no activity." | ||
stale-pr-message: "This PR is stale because it has been open for 45 days with no activity." | ||
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale." | ||
close-pr-message: "This PR was closed because it has been inactive for 14 days since being marked as stale." | ||
days-before-stale: 45 | ||
days-before-close: 14 | ||
exempt-issue-labels: "option.pinned,category.security" | ||
exempt-pr-labels: "option.pinned,category.security" | ||
stale-issue-label: "status.stale" | ||
stale-pr-label: "status.stale" |
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,38 @@ | ||
name: "Taiko Client Hive Tests" | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
paths: | ||
- "packages/taiko-client/**" | ||
pull_request: | ||
paths: | ||
- "packages/taiko-client/**" | ||
- "go.mod" | ||
- "go.sum" | ||
|
||
jobs: | ||
hive_tests: | ||
name: hive tests | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.21 | ||
cache: true | ||
|
||
- name: Clone taikoxyz/hive | ||
run: git clone https://github.com/taikoxyz/hive.git /tmp/hive | ||
|
||
- name: hive tests | ||
working-directory: packages/taiko-client | ||
run: export HIVE_BASE_DIR=/tmp/hive && go test -v -p=1 ./integration_test -timeout=600s |
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,17 +1,15 @@ | ||
{ | ||
"packages/branding": "0.4.0", | ||
"packages/bridge-ui": "2.11.0", | ||
"packages/docs-site": "1.11.4", | ||
"packages/bridge-ui": "2.12.0", | ||
"packages/docs-site": "1.11.8", | ||
"packages/eventindexer": "0.13.0", | ||
"packages/fork-diff": "0.6.0", | ||
"packages/guardian-prover-health-check": "0.1.0", | ||
"packages/guardian-prover-health-check-ui": "0.1.0", | ||
"packages/protocol": "1.7.0", | ||
"packages/guardian-prover-health-check-ui": "0.2.0", | ||
"packages/protocol": "1.8.0", | ||
"packages/relayer": "0.12.0", | ||
"packages/taiko-client": "0.29.0", | ||
"packages/nfts": "1.0.0", | ||
"packages/snaefell-ui": "1.1.0", | ||
"packages/supplementary-contracts": "1.0.0", | ||
"packages/taiko-client": "0.30.0", | ||
"packages/taikoon-ui": "1.2.0", | ||
"packages/ui-lib": "1.0.0", | ||
"packages/snaefell-ui": "1.1.0" | ||
"packages/ui-lib": "1.0.0" | ||
} |
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
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
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
Oops, something went wrong.