-
Notifications
You must be signed in to change notification settings - Fork 707
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'tsv-disabling-node-side' into tsv-disabling-backing
* tsv-disabling-node-side: (24 commits) Init System Parachain storage versions and add migration check jobs to CI (#1344) no-bound derives: Use absolute path for `core` (#1763) migrate alliance, fast-unstake and bags list to use derive-impl (#1636) Tvl pool staking (#1322) improve service error (#1734) frame-support: `RuntimeDebug\Eq\PartialEq` impls for `Imbalance` (#1717) Point documentation links to monorepo (#1741) [NPoS] Fix for Reward Deficit in the pool (#1255) Move import queue from `ChainSync` to `SyncingEngine` (#1736) Enable mocking contracts (#1331) Revert "fix(review-bot): pull secrets from `master` environment" (#1748) Remove kusama and polkadot runtime crates (#1731) Use `Extensions` to register offchain worker custom extensions (#1719) [RPC-Spec-V2] chainHead: use integer for block index and adjust RuntimeVersion JSON format (#1666) fix(review-bot): pull secrets from `master` environment (#1745) Fix `subkey inspect` output text padding (#1744) archive: Implement height, hashByHeight and call (#1582) rpc/client: Propagate `rpc_methods` method to reported methods (#1713) rococo-runtime: `RococoGenesisExt` removed (#1490) PVF: more filesystem sandboxing (#1373) ...
- Loading branch information
Showing
350 changed files
with
5,870 additions
and
43,502 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,121 @@ | ||
rules: | ||
- name: CI files | ||
condition: | ||
include: | ||
- ^\.gitlab-ci\.yml | ||
- ^docker/.* | ||
- ^\.github/.* | ||
- ^\.gitlab/.* | ||
- ^\.config/nextest.toml | ||
- ^\.cargo/.* | ||
exclude: | ||
- ^./gitlab/pipeline/zombienet.* | ||
min_approvals: 2 | ||
type: basic | ||
teams: | ||
- ci | ||
- release-engineering | ||
|
||
- name: Audit rules | ||
type: basic | ||
condition: | ||
include: | ||
- ^polkadot/runtime\/(kusama|polkadot|common)\/.* | ||
- ^polkadot/primitives/src\/.+\.rs$ | ||
- ^substrate/primitives/.* | ||
- ^substrate/frame/.* | ||
exclude: | ||
- ^polkadot/runtime\/(kusama|polkadot)\/src\/weights\/.+\.rs$ | ||
- ^substrate\/frame\/.+\.md$ | ||
min_approvals: 1 | ||
allowedToSkipRule: | ||
teams: | ||
- core-devs | ||
teams: | ||
- srlabs | ||
|
||
- name: Core developers | ||
countAuthor: true | ||
condition: | ||
include: | ||
- .* | ||
# excluding files from 'Runtime files' and 'CI files' rules | ||
exclude: | ||
- ^polkadot/runtime/(kusama|polkadot)/src/[^/]+\.rs$ | ||
- ^cumulus/parachains/runtimes/assets/(asset-hub-kusama|asset-hub-polkadot)/src/[^/]+\.rs$ | ||
- ^cumulus/parachains/runtimes/bridge-hubs/(bridge-hub-kusama|bridge-hub-polkadot)/src/[^/]+\.rs$ | ||
- ^cumulus/parachains/runtimes/collectives/collectives-polkadot/src/[^/]+\.rs$ | ||
- ^cumulus/parachains/common/src/[^/]+\.rs$ | ||
- ^substrate/frame/(?!.*(nfts/.*|uniques/.*|babe/.*|grandpa/.*|beefy|merkle-mountain-range/.*|contracts/.*|election|nomination-pools/.*|staking/.*|aura/.*)) | ||
- ^polkadot/runtime/(kusama|polkadot)/src/[^/]+\.rs$ | ||
- ^\.gitlab-ci\.yml | ||
- ^docker/.* | ||
- ^\.github/.* | ||
- ^\.gitlab/.* | ||
- ^\.config/nextest.toml | ||
- ^\.cargo/.* | ||
min_approvals: 2 | ||
type: basic | ||
teams: | ||
- core-devs | ||
|
||
# cumulus | ||
- name: Runtime files cumulus | ||
countAuthor: true | ||
condition: | ||
include: | ||
- ^cumulus/parachains/runtimes/assets/(asset-hub-kusama|asset-hub-polkadot)/src/[^/]+\.rs$ | ||
- ^cumulus/parachains/runtimes/bridge-hubs/(bridge-hub-kusama|bridge-hub-polkadot)/src/[^/]+\.rs$ | ||
- ^cumulus/parachains/runtimes/collectives/collectives-polkadot/src/[^/]+\.rs$ | ||
- ^cumulus/parachains/common/src/[^/]+\.rs$ | ||
type: and-distinct | ||
reviewers: | ||
- min_approvals: 1 | ||
teams: | ||
- locks-review | ||
- min_approvals: 1 | ||
teams: | ||
- polkadot-review | ||
|
||
# if there are any changes in the bridges subtree (in case of backport changes back to bridges repo) | ||
- name: Bridges subtree files | ||
type: basic | ||
condition: | ||
include: | ||
- ^bridges/.* | ||
min_approvals: 1 | ||
teams: | ||
- bridges-core | ||
|
||
# substrate | ||
|
||
- name: FRAME coders substrate | ||
condition: | ||
include: | ||
- ^substrate/frame/(?!.*(nfts/.*|uniques/.*|babe/.*|grandpa/.*|beefy|merkle-mountain-range/.*|contracts/.*|election|nomination-pools/.*|staking/.*|aura/.*)) | ||
type: "and" | ||
reviewers: | ||
- min_approvals: 2 | ||
teams: | ||
- core-devs | ||
- min_approvals: 1 | ||
teams: | ||
- frame-coders | ||
|
||
# Protection of THIS file | ||
- name: Review Bot | ||
condition: | ||
include: | ||
- review-bot\.yml | ||
min_approvals: 2 | ||
type: "and" | ||
reviewers: | ||
- min_approvals: 1 | ||
teams: | ||
- opstooling | ||
- min_approvals: 1 | ||
teams: | ||
- locks-review | ||
- min_approvals: 1 | ||
teams: | ||
- ci |
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,31 @@ | ||
name: Review PR | ||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
- review_requested | ||
- review_request_removed | ||
- ready_for_review | ||
pull_request_review: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
review-approvals: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Generate token | ||
id: team_token | ||
uses: tibdex/github-app-token@v1 | ||
with: | ||
app_id: ${{ secrets.REVIEW_APP_ID }} | ||
private_key: ${{ secrets.REVIEW_APP_KEY }} | ||
- name: "Evaluates PR reviews and assigns reviewers" | ||
uses: paritytech/[email protected] | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
team-token: ${{ steps.team_token.outputs.token }} | ||
checks-token: ${{ steps.team_token.outputs.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
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.