You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Your widgets can now be managed more efficiently in the editor."
107
114
}
108
115
```
116
+
109
117
Why it's bad: The title doesn't tell users WHAT the feature does.
110
118
111
119
### Good Example (Clear Action):
120
+
112
121
```json
113
122
{
114
123
"skip": false,
@@ -119,6 +128,7 @@ Why it's bad: The title doesn't tell users WHAT the feature does.
119
128
```
120
129
121
130
### Good Example (Fix):
131
+
122
132
```json
123
133
{
124
134
"skip": false,
@@ -129,6 +139,7 @@ Why it's bad: The title doesn't tell users WHAT the feature does.
129
139
```
130
140
131
141
### Good Example (Skip):
142
+
132
143
```json
133
144
{
134
145
"skip": true,
@@ -139,12 +150,15 @@ Why it's bad: The title doesn't tell users WHAT the feature does.
139
150
## Edge Cases
140
151
141
152
### Chore-only PR (skip):
153
+
142
154
A PR titled `chore: update Playwright config` that only touches `.github/workflows/playwright.yml` and `tests/playwright/` → skip. CI and test infrastructure changes are never product-facing.
143
155
144
156
### Feature PR (include):
157
+
145
158
A PR that adds a brand-new user-visible widget or capability → include. New user-visible widgets always qualify.
A PR that only bumps versions or updates a CHANGELOG.md under `packages/` → skip (release housekeeping).
149
163
A PR that changes behavior inside a `packages/` source directory with corresponding UI impact → include. Read the diff and PR body to determine whether the package change reaches users.
0 commit comments