-
Notifications
You must be signed in to change notification settings - Fork 8
Link related ADRs to each other #82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -170,7 +170,7 @@ Starting the cluster requires topology files for each of the nodes. For example: | |||||
| ] | ||||||
| } | ||||||
| ``` | ||||||
| Note: For details about topology files please refer to [Understanding configuration files](../getting-started/understanding-config-files.md). | ||||||
| Note: For details about topology files please refer to [Understanding configuration files](configuring-a-node-using-yaml.md). | ||||||
|
||||||
| Note: For details about topology files please refer to [Understanding configuration files](configuring-a-node-using-yaml.md). | |
| Note: For details about topology files please refer to [Configuring a node](configuring-a-node-using-yaml.md). |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -48,4 +48,4 @@ Make your __relay node__ `talk` to your __block-producing__ node and __other rel | |||||
| **Note**: If you want to connect to IPv4 and IPv6 relays, you must either not specify host addresses when starting `cardano-node` or make sure to specify | ||||||
| both an IPv4 and IPv6 host address. | ||||||
|
|
||||||
| Please see [Understanding configuration files](../getting-started/understanding-config-files.md) to learn about P2P topology. | ||||||
| Please see [Understanding configuration files](../reference/configuring-a-node-using-yaml.md) to learn about P2P topology. | ||||||
|
||||||
| Please see [Understanding configuration files](../reference/configuring-a-node-using-yaml.md) to learn about P2P topology. | |
| Please see [Configuring a node](../reference/configuring-a-node-using-yaml.md) to learn about P2P topology. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this workflow YAML, the list items under
steps:are not indented relative to thestepskey. As written, this parses assteps: nulland the- uses:entries become invalid at that level, causing the workflow to fail to load. Indent the- uses:lines (and their nestedwith:) understeps:(see.github/workflows/wiki-sync.yamlfor the repo’s indentation pattern).