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 | --- 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}