fix: rebrand paths in workflows and configs

- Update review-bot.yml: bridges -> pezbridges, frame -> pezframe
- Update build-publish-eth-rpc.yml: paritypr -> pezkuwichain, frame -> pezframe
- Update checks-quick.yml: frame -> pezframe path fixes
- Update release-60 workflow: frame -> pezframe path fixes
- Update tests-misc.yml: frame -> pezframe path fixes
- Apply cargo fix for unused parentheses in test collators
This commit is contained in:
2025-12-20 02:22:34 +03:00
parent 3680848df2
commit 2afd98c18d
7 changed files with 15 additions and 15 deletions
+5 -5
View File
@@ -41,12 +41,12 @@ rules:
teams: teams:
- core-devs - core-devs
# if there are any changes in the bridges subtree (in case of backport changes back to bridges repo) # if there are any changes in the pezbridges subtree
- name: Bridges subtree files - name: Pezbridges subtree files
type: basic type: basic
condition: condition:
include: include:
- ^bridges/.* - ^pezbridges/.*
minApprovals: 1 minApprovals: 1
teams: teams:
- bridges-core - bridges-core
@@ -56,8 +56,8 @@ rules:
type: basic type: basic
condition: condition:
include: include:
- ^bizinikiwi/frame/contracts/.* - ^bizinikiwi/pezframe/contracts/.*
- ^bizinikiwi/frame/revive/.* - ^bizinikiwi/pezframe/revive/.*
minApprovals: 1 minApprovals: 1
teams: teams:
- smart-contracts - smart-contracts
+3 -3
View File
@@ -12,7 +12,7 @@ concurrency:
cancel-in-progress: true cancel-in-progress: true
env: env:
ETH_RPC_IMAGE_NAME: "docker.io/paritypr/eth-rpc" ETH_RPC_IMAGE_NAME: "docker.io/pezkuwichain/eth-rpc"
jobs: jobs:
isdraft: isdraft:
@@ -50,7 +50,7 @@ jobs:
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
with: with:
context: . context: .
file: ./bizinikiwi/frame/revive/rpc/dockerfiles/eth-rpc/Dockerfile file: ./bizinikiwi/pezframe/revive/rpc/dockerfiles/eth-rpc/Dockerfile
push: false push: false
tags: | tags: |
${{ env.ETH_RPC_IMAGE_NAME }}:${{ env.VERSION }} ${{ env.ETH_RPC_IMAGE_NAME }}:${{ env.VERSION }}
@@ -76,7 +76,7 @@ jobs:
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
with: with:
context: . context: .
file: ./bizinikiwi/frame/revive/rpc/dockerfiles/eth-rpc/Dockerfile file: ./bizinikiwi/pezframe/revive/rpc/dockerfiles/eth-rpc/Dockerfile
push: true push: true
tags: | tags: |
${{ env.ETH_RPC_IMAGE_NAME }}:${{ env.VERSION }} ${{ env.ETH_RPC_IMAGE_NAME }}:${{ env.VERSION }}
+2 -2
View File
@@ -97,8 +97,8 @@ jobs:
run: > run: >
python3 .github/scripts/check-workspace.py . python3 .github/scripts/check-workspace.py .
--exclude --exclude
"bizinikiwi/frame/contracts/fixtures/build" "bizinikiwi/pezframe/contracts/fixtures/build"
"bizinikiwi/frame/contracts/fixtures/contracts/common" "bizinikiwi/pezframe/contracts/fixtures/contracts/common"
- name: deny git deps - name: deny git deps
run: python3 .github/scripts/deny-git-deps.py . run: python3 .github/scripts/deny-git-deps.py .
check-markdown: check-markdown:
@@ -206,8 +206,8 @@ jobs:
run: | run: |
echo "Running workspace check..." echo "Running workspace check..."
python3 .github/scripts/check-workspace.py . --exclude \ python3 .github/scripts/check-workspace.py . --exclude \
"bizinikiwi/frame/contracts/fixtures/build" \ "bizinikiwi/pezframe/contracts/fixtures/build" \
"bizinikiwi/frame/contracts/fixtures/contracts/common" "bizinikiwi/pezframe/contracts/fixtures/contracts/common"
- name: Deny git dependencies - name: Deny git dependencies
run: | run: |
+1 -1
View File
@@ -63,7 +63,7 @@ jobs:
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: script - name: script
run: | 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 RUSTFLAGS="--cfg bizinikiwi_runtime" cargo build --locked --target=wasm32-unknown-unknown --no-default-features
cd ../basic cd ../basic
RUSTFLAGS="--cfg bizinikiwi_runtime" cargo build --locked --target=wasm32-unknown-unknown --no-default-features RUSTFLAGS="--cfg bizinikiwi_runtime" cargo build --locked --target=wasm32-unknown-unknown --no-default-features
@@ -68,7 +68,7 @@ fn main() -> Result<()> {
None => { None => {
let runner = cli.create_runner(&cli.run.base).map_err(|e| { let runner = cli.create_runner(&cli.run.base).map_err(|e| {
BizinikiwiCliError::Application( BizinikiwiCliError::Application(
Box::new(e) as Box<(dyn 'static + Send + Sync + std::error::Error)> Box::new(e) as Box<dyn 'static + Send + Sync + std::error::Error>
) )
})?; })?;
@@ -76,7 +76,7 @@ fn main() -> Result<()> {
None => { None => {
let runner = cli.create_runner(&cli.run.base).map_err(|e| { let runner = cli.create_runner(&cli.run.base).map_err(|e| {
BizinikiwiCliError::Application( BizinikiwiCliError::Application(
Box::new(e) as Box<(dyn 'static + Send + Sync + std::error::Error)> Box::new(e) as Box<dyn 'static + Send + Sync + std::error::Error>
) )
})?; })?;