Skip to content

Commit 732b218

Browse files
committed
Merge branch 'tsv-disabling' into ao-disabling-statement-distribution
* tsv-disabling: (46 commits) frame-system: Add `last_runtime_upgrade_spec_version` (#2351) [testnet] Remove Wococo stuff from BridgeHubRococo/AssetHubRococo (#2300) xcm: SovereignPaidRemoteExporter: remove unused RefundSurplus instruction (#2312) Add `collectives-westend` and `glutton-westend` runtimes (#2024) Identity Deposits Relay to Parachain Migration (#1814) [CI] Prepare CI for Merge Queues (#2308) Unify `ChainSync` actions under one enum (follow-up) (#2317) pallet-xcm: use XcmTeleportFilter for teleported fees in reserve transfers (#2322) Contracts expose pallet-xcm (#1248) add NodeFeatures field to HostConfiguration and runtime API (#2177) statement-distribution: support inactive local validator in grid (#1571) change prepare worker to use fork instead of threads (#1685) chainHead/tests: Fix clippy (#2325) Contracts: Bump contracts rococo (#2286) Add simple collator election mechanism (#1340) chainHead: Remove `chainHead_genesis` method (#2296) chainHead: Support multiple hashes for `chainHead_unpin` method (#2295) Add environment to claim workflow (#2318) PVF: fix detection of unshare-and-change-root security capability (#2304) xcm-emulator: add Rococo<>Westend bridge and add tests for assets transfers over the bridge (#2251) ...
2 parents 2910294 + 61b8c22 commit 732b218

File tree

558 files changed

+28774
-11354
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

558 files changed

+28774
-11354
lines changed

.github/workflows/build-and-attach-release-runtimes.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
- { name: asset-hub-westend, package: asset-hub-westend-runtime, path: cumulus/parachains/runtimes/assets/asset-hub-westend }
2020
- { name: bridge-hub-rococo, package: bridge-hub-rococo-runtime, path: cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo }
2121
- { name: contracts-rococo, package: contracts-rococo-runtime, path: cumulus/parachains/runtimes/contracts/contracts-rococo }
22+
- { name: collectives-westend, package: collectives-westend-runtime, path: cumulus/parachains/runtimes/collectives/collectives-westend }
23+
- { name: glutton-westend, package: glutton-westend-runtime, path: cumulus/parachains/runtimes/glutton/glutton-westend }
2224
build_config:
2325
# Release build has logging disabled and no dev features
2426
- { type: on-chain-release, opts: --features on-chain-release-build }

.github/workflows/check-labels.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@ name: Check labels
33
on:
44
pull_request:
55
types: [labeled, opened, synchronize, unlabeled]
6+
merge_group:
67

78
jobs:
89
check-labels:
910
runs-on: ubuntu-latest
1011
steps:
12+
- name: Skip merge queue
13+
if: ${{ contains(github.ref, 'gh-readonly-queue') }}
14+
run: exit 0
1115
- name: Pull image
1216
env:
1317
IMAGE: paritytech/ruled_labels:0.4.0

.github/workflows/check-licenses.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Check licenses
22

33
on:
44
pull_request:
5+
merge_group:
56

67
permissions:
78
packages: read

.github/workflows/check-links.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- ".github/workflows/check-links.yml"
99
- ".config/lychee.toml"
1010
types: [opened, synchronize, reopened, ready_for_review]
11+
merge_group:
1112

1213
permissions:
1314
packages: read

.github/workflows/check-markdown.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Check Markdown
33
on:
44
pull_request:
55
types: [opened, synchronize, reopened, ready_for_review]
6+
merge_group:
67

78
permissions:
89
packages: read
@@ -23,8 +24,8 @@ jobs:
2324

2425
- name: Install tooling
2526
run: |
26-
npm install -g markdownlint-cli
27-
markdownlint --version
27+
npm install -g markdownlint-cli
28+
markdownlint --version
2829
2930
- name: Check Markdown
3031
env:

.github/workflows/check-prdoc.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Check PRdoc
33
on:
44
pull_request:
55
types: [labeled, opened, synchronize, unlabeled]
6+
merge_group:
67

78
env:
89
IMAGE: paritytech/prdoc:v0.0.5
@@ -17,6 +18,9 @@ jobs:
1718
check-prdoc:
1819
runs-on: ubuntu-latest
1920
steps:
21+
- name: Skip merge queue
22+
if: ${{ contains(github.ref, 'gh-readonly-queue') }}
23+
run: exit 0
2024
- name: Pull image
2125
run: |
2226
echo "Pulling $IMAGE"

.github/workflows/check-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- master
77
pull_request:
88
types: [opened, synchronize, reopened, ready_for_review]
9+
merge_group:
910

1011
jobs:
1112
check-publish:

.github/workflows/claim-crates.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Claim Crates
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
claim-crates:
10+
runs-on: ubuntu-latest
11+
environment: master
12+
steps:
13+
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
14+
15+
- name: Rust Cache
16+
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 # v2.7.1
17+
with:
18+
cache-on-failure: true
19+
20+
- name: install parity-publish
21+
run: cargo install [email protected]
22+
23+
- name: parity-publish claim
24+
env:
25+
PARITY_PUBLISH_CRATESIO_TOKEN: ${{ secrets.CRATESIO_PUBLISH_CLAIM_TOKEN }}
26+
run: parity-publish claim

.github/workflows/fmt-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- master
77
pull_request:
88
types: [opened, synchronize, reopened, ready_for_review]
9+
merge_group:
910

1011
jobs:
1112
quick_check:

.github/workflows/gitspiegel-trigger.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
- unlocked
1414
- ready_for_review
1515
- reopened
16+
merge_group:
1617

1718
jobs:
1819
sync:

0 commit comments

Comments
 (0)