diff --git a/.github/review-bot.yml b/.github/review-bot.yml index 09e5bccf..baec4ffb 100644 --- a/.github/review-bot.yml +++ b/.github/review-bot.yml @@ -41,12 +41,12 @@ rules: teams: - core-devs - # if there are any changes in the bridges subtree (in case of backport changes back to bridges repo) - - name: Bridges subtree files + # if there are any changes in the pezbridges subtree + - name: Pezbridges subtree files type: basic condition: include: - - ^bridges/.* + - ^pezbridges/.* minApprovals: 1 teams: - bridges-core @@ -56,8 +56,8 @@ rules: type: basic condition: include: - - ^bizinikiwi/frame/contracts/.* - - ^bizinikiwi/frame/revive/.* + - ^bizinikiwi/pezframe/contracts/.* + - ^bizinikiwi/pezframe/revive/.* minApprovals: 1 teams: - smart-contracts diff --git a/.github/workflows/build-publish-eth-rpc.yml b/.github/workflows/build-publish-eth-rpc.yml index 81dfe634..b25b452c 100644 --- a/.github/workflows/build-publish-eth-rpc.yml +++ b/.github/workflows/build-publish-eth-rpc.yml @@ -12,7 +12,7 @@ concurrency: cancel-in-progress: true env: - ETH_RPC_IMAGE_NAME: "docker.io/paritypr/eth-rpc" + ETH_RPC_IMAGE_NAME: "docker.io/pezkuwichain/eth-rpc" jobs: isdraft: @@ -50,7 +50,7 @@ jobs: uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 with: context: . - file: ./bizinikiwi/frame/revive/rpc/dockerfiles/eth-rpc/Dockerfile + file: ./bizinikiwi/pezframe/revive/rpc/dockerfiles/eth-rpc/Dockerfile push: false tags: | ${{ env.ETH_RPC_IMAGE_NAME }}:${{ env.VERSION }} @@ -76,7 +76,7 @@ jobs: uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 with: context: . - file: ./bizinikiwi/frame/revive/rpc/dockerfiles/eth-rpc/Dockerfile + file: ./bizinikiwi/pezframe/revive/rpc/dockerfiles/eth-rpc/Dockerfile push: true tags: | ${{ env.ETH_RPC_IMAGE_NAME }}:${{ env.VERSION }} diff --git a/.github/workflows/checks-quick.yml b/.github/workflows/checks-quick.yml index 403c07b4..d3214bab 100644 --- a/.github/workflows/checks-quick.yml +++ b/.github/workflows/checks-quick.yml @@ -97,8 +97,8 @@ jobs: run: > python3 .github/scripts/check-workspace.py . --exclude - "bizinikiwi/frame/contracts/fixtures/build" - "bizinikiwi/frame/contracts/fixtures/contracts/common" + "bizinikiwi/pezframe/contracts/fixtures/build" + "bizinikiwi/pezframe/contracts/fixtures/contracts/common" - name: deny git deps run: python3 .github/scripts/deny-git-deps.py . check-markdown: diff --git a/.github/workflows/release-60_post-crates-release-activities.yml b/.github/workflows/release-60_post-crates-release-activities.yml index 4324a661..73d48491 100644 --- a/.github/workflows/release-60_post-crates-release-activities.yml +++ b/.github/workflows/release-60_post-crates-release-activities.yml @@ -206,8 +206,8 @@ jobs: run: | echo "Running workspace check..." python3 .github/scripts/check-workspace.py . --exclude \ - "bizinikiwi/frame/contracts/fixtures/build" \ - "bizinikiwi/frame/contracts/fixtures/contracts/common" + "bizinikiwi/pezframe/contracts/fixtures/build" \ + "bizinikiwi/pezframe/contracts/fixtures/contracts/common" - name: Deny git dependencies run: | diff --git a/.github/workflows/tests-misc.yml b/.github/workflows/tests-misc.yml index 33b44c79..137b3c9a 100644 --- a/.github/workflows/tests-misc.yml +++ b/.github/workflows/tests-misc.yml @@ -63,7 +63,7 @@ jobs: uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: script run: | - cd bizinikiwi/frame/examples/offchain-worker/ + cd bizinikiwi/pezframe/examples/offchain-worker/ RUSTFLAGS="--cfg bizinikiwi_runtime" cargo build --locked --target=wasm32-unknown-unknown --no-default-features cd ../basic RUSTFLAGS="--cfg bizinikiwi_runtime" cargo build --locked --target=wasm32-unknown-unknown --no-default-features diff --git a/pezkuwi/teyrchain/test-teyrchains/adder/collator/src/main.rs b/pezkuwi/teyrchain/test-teyrchains/adder/collator/src/main.rs index 8828cfde..0dfbf4af 100644 --- a/pezkuwi/teyrchain/test-teyrchains/adder/collator/src/main.rs +++ b/pezkuwi/teyrchain/test-teyrchains/adder/collator/src/main.rs @@ -68,7 +68,7 @@ fn main() -> Result<()> { None => { let runner = cli.create_runner(&cli.run.base).map_err(|e| { BizinikiwiCliError::Application( - Box::new(e) as Box<(dyn 'static + Send + Sync + std::error::Error)> + Box::new(e) as Box ) })?; diff --git a/pezkuwi/teyrchain/test-teyrchains/undying/collator/src/main.rs b/pezkuwi/teyrchain/test-teyrchains/undying/collator/src/main.rs index f590520e..051997b8 100644 --- a/pezkuwi/teyrchain/test-teyrchains/undying/collator/src/main.rs +++ b/pezkuwi/teyrchain/test-teyrchains/undying/collator/src/main.rs @@ -76,7 +76,7 @@ fn main() -> Result<()> { None => { let runner = cli.create_runner(&cli.run.base).map_err(|e| { BizinikiwiCliError::Application( - Box::new(e) as Box<(dyn 'static + Send + Sync + std::error::Error)> + Box::new(e) as Box ) })?;