@@ -28,7 +28,7 @@ Code review is essential, but not all changes carry the same risk. Typo fixes, i
2828- ** Conservative by Default** - Only labels PRs with high confidence scores
2929- ** Transparent Decisions** - Adds explanatory comments to labeled PRs
3030- ** Configurable** - Customize model, threshold, label name, and more
31- - ** Four Categories** - Detects typo fixes , i18n updates, UI style changes, and code formatting
31+ - ** Skip-Review Categories** - Detects typos , i18n updates, UI tweaks, formatting, unused-code cleanup, and safe dependency bumps
3232
3333## How It Works
3434
@@ -116,7 +116,7 @@ jobs:
116116
117117# # Skip-Review Categories
118118
119- The action identifies four types of low-risk changes :
119+ The action identifies the following low-risk change types :
120120
121121# ## 1. Fix Typos
122122
@@ -154,6 +154,25 @@ Automated formatting changes from tools like Prettier or ESLint.
154154+ const sum = a + b;
155155` ` `
156156
157+ # ## 5. Remove Unused Code
158+
159+ Cutting deprecated endpoints, feature flags, or configs that have zero remaining callers.
160+
161+ ` ` ` diff
162+ -// Temporary shim until everyone hits v2
163+ -app.use('/api/v1/members', legacyMembersRouter);
164+ app.use('/api/v2/members', membersRouter);
165+ ` ` `
166+
167+ # ## 6. Safe Dependency Version Bump
168+
169+ Patch or minor version updates that only touch dependency manifests or lockfiles.
170+
171+ ` ` ` diff
172+ - "typescript": "5.5.4"
173+ + "typescript": "5.5.5"
174+ ` ` `
175+
157176# # Outputs
158177
159178| Output | Description |
0 commit comments