From 9cacbe8b55268999e0571abdb271213f84346940 Mon Sep 17 00:00:00 2001 From: Wilson Xu Date: Thu, 19 Mar 2026 00:47:15 +0800 Subject: [PATCH 1/2] fix(docs): update broken Git workflow link in DEVELOPMENT.md The [here] link pointing to the Git workflow guide was returning a 404 because the file was moved from the repository root to docs/010-contribution-guidelines/. Updated the URL to point to the correct location. Fixes #1962 Co-Authored-By: Claude Opus 4.6 (1M context) --- DEVELOPMENT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 09f9175ef..97d8ad076 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -13,7 +13,7 @@ git clone https://github.com/{your_username}/cli.git cd cli ``` -After cloning the repository, you should setup the fork properly and configure the `remote` repository as described [here](https://github.com/asyncapi/community/blob/master/git-workflow.md) +After cloning the repository, you should setup the fork properly and configure the `remote` repository as described [here](https://github.com/asyncapi/community/blob/master/docs/010-contribution-guidelines/git-workflow.md) 2. Install dependencies: From 7b3ebf72b09c758bb28371debf05ba89a939a8eb Mon Sep 17 00:00:00 2001 From: Wilson Xu Date: Thu, 19 Mar 2026 01:23:15 +0800 Subject: [PATCH 2/2] chore: add changeset for broken docs link fix Co-Authored-By: Claude Opus 4.6 (1M context) --- .changeset/fix-broken-docs-link.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/fix-broken-docs-link.md diff --git a/.changeset/fix-broken-docs-link.md b/.changeset/fix-broken-docs-link.md new file mode 100644 index 000000000..c3edf67db --- /dev/null +++ b/.changeset/fix-broken-docs-link.md @@ -0,0 +1,5 @@ +--- +"@asyncapi/cli": patch +--- + +Fix broken Git workflow link in DEVELOPMENT.md to point to the new docs location