From f1d8d3523ef58ea0d03132911201f2cb54db2cbf Mon Sep 17 00:00:00 2001 From: Sampo Silvennoinen <20028934+stscoundrel@users.noreply.github.com> Date: Thu, 14 Nov 2024 16:06:54 +0200 Subject: [PATCH] chore: fix broken link in contributing.md (#732) The previous link had '.github' twice in the path, as Github does not parse it as path from repo, but as path from current folder. Perhaps the contributing.md was previously at top level instead of .github folder. The current link in main branch is: https://github.com/testcontainers/testcontainers-python/blob/main/.github/.github/ISSUE_TEMPLATE/new-container.md --- .github/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 12c8d19f..1b1f6b92 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -39,7 +39,7 @@ You need to have the following tools available to you: ## Adding new containers -We have an [issue template](.github/ISSUE_TEMPLATE/new-container.md) for adding new containers, please refer to that for more information. +We have an [issue template](./ISSUE_TEMPLATE/new-container.md) for adding new containers, please refer to that for more information. Once you've talked to the maintainers (we do our best to reply!) then you can proceed with contributing the new container. > [!WARNING]