From 66e7babe46b133a0fab227ed4eed83a4011429ca Mon Sep 17 00:00:00 2001 From: Patrick Lewis <4015312+locus313@users.noreply.github.com> Date: Sat, 27 Jun 2026 15:36:00 -0700 Subject: [PATCH 1/2] chore: make refactor commits visible in Release Please changelog Internal cleanup and simplification deserve a patch release. Moved 'refactor' from hidden Miscellaneous to a visible 'Code Refactoring' section so cleanup PRs trigger release PRs. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- release-please-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-please-config.json b/release-please-config.json index ab5985e..141935e 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -16,7 +16,7 @@ {"type": "deps", "section": "Dependencies"}, {"type": "chore", "section": "Miscellaneous", "hidden": true}, {"type": "style", "section": "Miscellaneous", "hidden": true}, - {"type": "refactor", "section": "Miscellaneous", "hidden": true}, + {"type": "refactor", "section": "Code Refactoring"}, {"type": "test", "section": "Miscellaneous", "hidden": true}, {"type": "build", "section": "Miscellaneous", "hidden": true}, {"type": "ci", "section": "Miscellaneous", "hidden": true} From cbfbd1e5561a522506f3e43bab649df443141367 Mon Sep 17 00:00:00 2001 From: Patrick Lewis <4015312+locus313@users.noreply.github.com> Date: Sat, 27 Jun 2026 15:37:12 -0700 Subject: [PATCH 2/2] docs: update refactor commit type to show patch bump in changelog refactor: is now visible in Release Please (section: Code Refactoring) and triggers a patch version bump. Update the commit convention tables in AGENTS.md and copilot-instructions.md to reflect this. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/copilot-instructions.md | 2 +- AGENTS.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 7f61687..ee934a6 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -267,7 +267,7 @@ All commits **must** follow [Conventional Commits](https://www.conventionalcommi | `docs:` | patch bump (visible) | `docs: update GitHub Actions examples in README` | | `chore:` | no bump (hidden) | `chore: update actions/checkout to v7` | | `ci:` | no bump (hidden) | `ci: pin release-please-action SHA` | -| `refactor:` | no bump (hidden) | `refactor: extract pagination helper` | +| `refactor:` | patch | `refactor: extract pagination helper` | ### Variable Naming Conventions - `GITHUB_TOKEN` — main admin token diff --git a/AGENTS.md b/AGENTS.md index 57e633c..5bc8f58 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -261,7 +261,7 @@ All commits **must** follow [Conventional Commits](https://www.conventionalcommi | `feat!:` / `BREAKING CHANGE:` | major | ✅ | | `chore:` | none | hidden | | `ci:` | none | hidden | -| `refactor:` | none | hidden | +| `refactor:` | patch | Code Refactoring | | `test:` | none | hidden | ---