Skip to content

Commit fd4c0f2

Browse files
authored
Merge branch 'master' into pallet-message-queue
2 parents a72bfdf + c0c0632 commit fd4c0f2

File tree

88 files changed

+2648
-895
lines changed

Some content is hidden

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

88 files changed

+2648
-895
lines changed

.github/scripts/generate-prdoc.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ def create_prdoc(pr, audience, title, description, patch, bump, force):
8686
if p == '/':
8787
exit(1)
8888
p = os.path.dirname(p)
89-
89+
9090
with open(os.path.join(p, "Cargo.toml")) as f:
9191
manifest = toml.load(f)
92-
92+
9393
if not "package" in manifest:
9494
continue
9595

.github/workflows/command-inform.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
comment:
99
runs-on: ubuntu-latest
1010
# Temporary disable the bot until the new command bot works properly
11-
if: github.event.issue.pull_request && startsWith(github.event.comment.body, 'bot ') && false # disabled for now, until tested
11+
if: github.event.issue.pull_request && startsWith(github.event.comment.body, 'bot ')
1212
steps:
1313
- name: Inform that the new command exist
1414
uses: actions/github-script@v7
@@ -18,5 +18,5 @@ jobs:
1818
issue_number: context.issue.number,
1919
owner: context.repo.owner,
2020
repo: context.repo.repo,
21-
body: 'We have migrated the command bot to GHA<br/><br/>Please, see the new usage instructions <a href="https://github.com/paritytech/polkadot-sdk/blob/master/docs/contributor/commands-readme.md">here</a>. Soon the old commands will be disabled.'
22-
})
21+
body: 'We have migrated the command bot to GHA<br/><br/>Please, see the new usage instructions <a href="https://github.com/paritytech/polkadot-sdk/blob/master/docs/contributor/commands-readme.md">here</a> or <a href="https://forum.parity.io/t/streamlining-weight-generation-and-more-the-new-cmd-bot/2411">here</a>. Soon the old commands will be disabled.'
22+
})

.github/workflows/misc-sync-templates.yml

+6
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,12 @@ jobs:
131131
- name: Copy over the new changes
132132
run: |
133133
cp -r polkadot-sdk/templates/${{ matrix.template }}/* "${{ env.template-path }}/"
134+
- name: Remove unnecessary files from parachain template
135+
if: ${{ matrix.template == 'parachain' }}
136+
run: |
137+
rm -f "${{ env.template-path }}/README.docify.md"
138+
rm -f "${{ env.template-path }}/Cargo.toml"
139+
rm -f "${{ env.template-path }}/src/lib.rs"
134140
135141
- name: Run psvm on monorepo workspace dependencies
136142
run: psvm -o -v ${{ github.event.inputs.stable_release_branch }} -p ./Cargo.toml

.github/workflows/review-bot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
artifact-name: pr_number
3131
- name: "Evaluates PR reviews and assigns reviewers"
32-
uses: paritytech/review-bot@v2.6.0
32+
uses: paritytech/review-bot@v2.7.0
3333
with:
3434
repo-token: ${{ steps.app_token.outputs.token }}
3535
team-token: ${{ steps.app_token.outputs.token }}

0 commit comments

Comments
 (0)