From 0d57cbcd01c184e539e1574dd3614a2e8cfa177f Mon Sep 17 00:00:00 2001 From: Pavel Safronov Date: Tue, 26 May 2026 09:48:18 -0700 Subject: [PATCH] docs: update agent instructions about commit naming in prs --- AGENTS.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 0513fa1d1b..6e0e63efb8 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -117,7 +117,9 @@ Public API (MongoClient, Db, Collection, Cursors) ## Commit Messages -Follow [Conventional Commits](https://www.conventionalcommits.org/): `(NODE-XXXX): ` +PRs are **squash-merged**. The PR title becomes the single commit message on `main`, so only the PR title needs to follow the format below. Individual commits within a branch don't need to match (though it's good practice and helps reviewers). + +PR title format follows [Conventional Commits](https://www.conventionalcommits.org/): `(NODE-XXXX): ` Types: `feat`, `fix`, `docs`, `style`, `refactor`, `perf`, `test`, `chore`