Skip to content

Commit dbaf221

Browse files
Merge branch 'master' into xcm-v5-guide
2 parents d0c1cf4 + 4409f9a commit dbaf221

File tree

514 files changed

+55923
-21411
lines changed

Some content is hidden

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

514 files changed

+55923
-21411
lines changed

.CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ To set up the structure, follow these steps:
6868

6969
This command will install all dependencies listed in the `requirements.txt` file.
7070

71-
2. Switch to the polkadot-docs directory and use [npm](https://docs.npmjs.com/about-npm) to install dependencies:
71+
2. Switch to the `polkadot-docs` directory and use [npm](https://docs.npmjs.com/about-npm) to install dependencies:
7272

7373
```bash
7474
cd polkadot-docs && npm install

.DS_Store

6 KB
Binary file not shown.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: 📚 Report a documentation issue
2+
description: Found a typo, broken link, or unclear section? Let us know.
3+
title: "[Docs] "
4+
labels: []
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to improve our documentation!
10+
11+
- type: input
12+
id: page
13+
attributes:
14+
label: Page URL
15+
description: Link to the page where the issue appears
16+
placeholder: https://docs.polkadot.network/...
17+
validations:
18+
required: true
19+
20+
- type: textarea
21+
id: issue
22+
attributes:
23+
label: What’s the issue?
24+
description: Describe what you found confusing, incorrect or broken
25+
placeholder: The section on staking is unclear because...
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: suggestion
31+
attributes:
32+
label: Suggested improvement
33+
description: How could we improve this part?
34+
placeholder: Maybe add a diagram, or explain the term 'nominator' earlier...
35+
validations:
36+
required: false

.github/scripts/check_dependencies.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ def check_releases(releases_source_file):
7373
continue
7474

7575
for name, info in items.items():
76+
# Skip dependencies marked with ignore_updates=true
77+
if info.get("ignore_updates", False):
78+
continue
79+
7680
current_version = info.get("version")
7781
latest_version, latest_url = REGISTRIES[category](info)
7882

0 commit comments

Comments
 (0)