Skip to content

Commit 2eafc91

Browse files
authored
Merge branch 'master' into toEthereumXcmExecutor
2 parents 62b4b29 + 9c21405 commit 2eafc91

File tree

95 files changed

+7006
-492
lines changed

Some content is hidden

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

95 files changed

+7006
-492
lines changed

.config/lychee.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,6 @@ exclude = [
7171
"%7B:\\?}",
7272
# Example ws:// URLs in Rust doc comments incorrectly parsed as file paths by lychee
7373
"file://.*/ws:/node.*",
74+
# Private repository:
75+
"https://github.com/paritytech/individuality/blob/main/runtimes/people-westend/chain-spec/create_people_westend_spec.sh",
7476
]

.github/workflows/release-20_build-rc.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,14 @@ on:
3434

3535
jobs:
3636
check-synchronization:
37+
if: ${{ github.event_name == 'workflow_dispatch' }}
3738
uses: paritytech-release/sync-workflows/.github/workflows/check-synchronization.yml@main
3839
secrets:
3940
fork_writer_app_key: ${{ secrets.UPSTREAM_CONTENT_SYNC_APP_KEY }}
4041

4142
validate-inputs:
4243
needs: [check-synchronization]
43-
if: needs.check-synchronization.outputs.checks_passed == 'true'
44+
if: ${{ !cancelled() && (needs.check-synchronization.result == 'skipped' || needs.check-synchronization.outputs.checks_passed == 'true') }}
4445
runs-on: ubuntu-latest
4546
outputs:
4647
release_tag: ${{ steps.validate_inputs.outputs.release_tag }}

.github/workflows/release-21_build-runtimes.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,14 @@ on:
5454

5555
jobs:
5656
check-synchronization:
57+
if: ${{ github.event_name == 'workflow_dispatch' }}
5758
uses: paritytech-release/sync-workflows/.github/workflows/check-synchronization.yml@main
5859
secrets:
5960
fork_writer_app_key: ${{ secrets.UPSTREAM_CONTENT_SYNC_APP_KEY }}
6061

6162
validate-inputs:
6263
needs: [check-synchronization]
63-
if: needs.check-synchronization.outputs.checks_passed == 'true'
64+
if: ${{ !cancelled() && (needs.check-synchronization.result == 'skipped' || needs.check-synchronization.outputs.checks_passed == 'true') }}
6465
runs-on: ubuntu-latest
6566
outputs:
6667
release_tag: ${{ steps.validate_inputs.outputs.release_tag }}

.github/workflows/release-22_combined-rc-runtime-builds-release-draft.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
validate-inputs:
6363
needs: [check-synchronization]
64-
if: needs.check-synchronization.outputs.checks_passed == 'true'
64+
if: ${{ needs.check-synchronization.outputs.checks_passed == 'true' }}
6565
runs-on: ubuntu-latest
6666
outputs:
6767
release_tag: ${{ steps.validate_inputs.outputs.release_tag }}

.github/workflows/release-30_publish_release_draft.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,14 @@ on:
5757

5858
jobs:
5959
check-synchronization:
60+
if: ${{ github.event_name == 'workflow_dispatch' }}
6061
uses: paritytech-release/sync-workflows/.github/workflows/check-synchronization.yml@main
6162
secrets:
6263
fork_writer_app_key: ${{ secrets.UPSTREAM_CONTENT_SYNC_APP_KEY }}
6364

6465
validate-inputs:
6566
needs: [ check-synchronization ]
66-
if: needs.check-synchronization.outputs.checks_passed == 'true'
67+
if: ${{ !cancelled() && (needs.check-synchronization.result == 'skipped' || needs.check-synchronization.outputs.checks_passed == 'true') }}
6768
runs-on: ubuntu-latest
6869
outputs:
6970
release_tag: ${{ steps.validate_inputs.outputs.release_tag }}

.github/workflows/release-31_promote-rc-to-final.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,14 @@ on:
3737
jobs:
3838

3939
check-synchronization:
40+
if: ${{ github.event_name == 'workflow_dispatch' }}
4041
uses: paritytech-release/sync-workflows/.github/workflows/check-synchronization.yml@main
4142
secrets:
4243
fork_writer_app_key: ${{ secrets.UPSTREAM_CONTENT_SYNC_APP_KEY }}
4344

4445
validate-inputs:
4546
needs: [ check-synchronization ]
46-
if: needs.check-synchronization.outputs.checks_passed == 'true'
47+
if: ${{ !cancelled() && (needs.check-synchronization.result == 'skipped' || needs.check-synchronization.outputs.checks_passed == 'true') }}
4748
runs-on: ubuntu-latest
4849
outputs:
4950
release_tag: ${{ steps.validate_inputs.outputs.release_tag }}

.github/workflows/release-40_publish-deb-package.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@ on:
3030

3131
jobs:
3232
check-synchronization:
33+
if: ${{ github.event_name == 'workflow_dispatch' }}
3334
uses: paritytech-release/sync-workflows/.github/workflows/check-synchronization.yml@main
3435
secrets:
3536
fork_writer_app_key: ${{ secrets.UPSTREAM_CONTENT_SYNC_APP_KEY }}
3637
call-publish-workflow:
3738
needs: [check-synchronization]
38-
if: needs.check-synchronization.outputs.checks_passed == 'true'
39+
if: ${{ !cancelled() && (needs.check-synchronization.result == 'skipped' || needs.check-synchronization.outputs.checks_passed == 'true') }}
3940
uses: ./.github/workflows/release-reusable-publish-packages.yml
4041
with:
4142
tag: ${{ inputs.tag }}

.github/workflows/release-41_publish-rpm-package.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,13 @@ on:
2929

3030
jobs:
3131
check-synchronization:
32+
if: ${{ github.event_name == 'workflow_dispatch' }}
3233
uses: paritytech-release/sync-workflows/.github/workflows/check-synchronization.yml@main
3334
secrets:
3435
fork_writer_app_key: ${{ secrets.UPSTREAM_CONTENT_SYNC_APP_KEY }}
3536
call-publish-workflow:
3637
needs: [check-synchronization]
37-
if: needs.check-synchronization.outputs.checks_passed == 'true'
38+
if: ${{ !cancelled() && (needs.check-synchronization.result == 'skipped' || needs.check-synchronization.outputs.checks_passed == 'true') }}
3839
uses: ./.github/workflows/release-reusable-publish-packages.yml
3940
with:
4041
tag: ${{ inputs.tag }}

.github/workflows/release-50_publish-docker.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,14 @@ env:
101101

102102
jobs:
103103
check-synchronization:
104+
if: ${{ github.event_name == 'workflow_dispatch' }}
104105
uses: paritytech-release/sync-workflows/.github/workflows/check-synchronization.yml@main
105106
secrets:
106107
fork_writer_app_key: ${{ secrets.UPSTREAM_CONTENT_SYNC_APP_KEY }}
107108

108109
validate-inputs:
109110
needs: [check-synchronization]
110-
if: needs.check-synchronization.outputs.checks_passed == 'true'
111+
if: ${{ !cancelled() && (needs.check-synchronization.result == 'skipped' || needs.check-synchronization.outputs.checks_passed == 'true') }}
111112
runs-on: ubuntu-latest
112113
outputs:
113114
version: ${{ steps.validate_inputs.outputs.VERSION }}

.github/workflows/release-70_combined-publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
promote-rc-to-final:
6363
name: Promote RC to final on S3
6464
needs: [check-synchronization]
65-
if: needs.check-synchronization.outputs.checks_passed == 'true'
65+
if: ${{ needs.check-synchronization.outputs.checks_passed == 'true' }}
6666
uses: ./.github/workflows/release-31_promote-rc-to-final.yml
6767
with:
6868
binary: ${{ inputs.binary }}

0 commit comments

Comments
 (0)