From 59082ad64d72f349b44af8fbeb10e4826515efd3 Mon Sep 17 00:00:00 2001 From: Melvin PETIT Date: Tue, 16 Jun 2026 12:32:02 +0200 Subject: [PATCH] docs: move community health files into .github Declutter the project root by moving SECURITY.md, CONTRIBUTING.md and CODE_OF_CONDUCT.md into .github (alongside the PR template and workflows), where GitHub still recognizes them. README and AGENTS.md links are updated to the new paths so the docs stay just as visible. --- CODE_OF_CONDUCT.md => .github/CODE_OF_CONDUCT.md | 0 CONTRIBUTING.md => .github/CONTRIBUTING.md | 0 SECURITY.md => .github/SECURITY.md | 0 AGENTS.md | 2 +- README.md | 4 ++-- 5 files changed, 3 insertions(+), 3 deletions(-) rename CODE_OF_CONDUCT.md => .github/CODE_OF_CONDUCT.md (100%) rename CONTRIBUTING.md => .github/CONTRIBUTING.md (100%) rename SECURITY.md => .github/SECURITY.md (100%) diff --git a/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md similarity index 100% rename from CODE_OF_CONDUCT.md rename to .github/CODE_OF_CONDUCT.md diff --git a/CONTRIBUTING.md b/.github/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING.md rename to .github/CONTRIBUTING.md diff --git a/SECURITY.md b/.github/SECURITY.md similarity index 100% rename from SECURITY.md rename to .github/SECURITY.md diff --git a/AGENTS.md b/AGENTS.md index 326c75e..05e26fe 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -26,7 +26,7 @@ Rules for AI assistants (Claude Code, Codex, Cursor, etc.) contributing to this ## Commits -Follow [Conventional Commits](https://www.conventionalcommits.org/), same rules as in [CONTRIBUTING.md](CONTRIBUTING.md). +Follow [Conventional Commits](https://www.conventionalcommits.org/), same rules as in [CONTRIBUTING.md](.github/CONTRIBUTING.md). - Subject 50 characters or fewer. - No `Co-Authored-By` lines. diff --git a/README.md b/README.md index 63d4031..c790f51 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ Every push and pull request runs an automated pipeline: ESLint (zero warnings allowed), strict type checking, Prisma schema validation and a production build, plus CodeQL static analysis, dependency auditing, dependency review and secret scanning. See [`.github/workflows`](.github/workflows). Security policy and -reporting: [SECURITY.md](SECURITY.md). +reporting: [SECURITY.md](.github/SECURITY.md). ## Contributing @@ -117,7 +117,7 @@ Contributions are welcome. > **Contribution rules are enforced automatically by Git hooks (`.githooks/`) and CI (`.github/workflows/compliance.yml`). Non-compliant PR titles are rejected: invalid conventional commit format, AI attribution trailers, secrets, non-English text, frozen-dependency major bumps, and forbidden code patterns. The hooks activate on `npm install`.** -Please also read [CONTRIBUTING.md](CONTRIBUTING.md) and [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md). +Please also read [CONTRIBUTING.md](.github/CONTRIBUTING.md) and [CODE_OF_CONDUCT.md](.github/CODE_OF_CONDUCT.md). ## License