@worldresources/wri-design-systems 2.181.0-react-19-beta.4 → 2.182.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -324,3 +324,23 @@ npm login
324
324
  ```
325
325
  npm publish
326
326
  ```
327
+
328
+ ## PR Label Rules
329
+
330
+ Use exactly one versioning label on every PR. The label drives the npm version bump when the PR is merged into `main`.
331
+
332
+ **How it works**
333
+
334
+ - Open a PR and add **one** of the labels below.
335
+ - The PR Label Guard workflow enforces that exactly one label is present.
336
+ - On merge, the Release & Publish workflow bumps `package.json`, tags, and publishes to npm for `major`, `minor`, or `patch`.
337
+ - `no-bump` skips all versioning and publishing.
338
+
339
+ **Label guide**
340
+
341
+ - `patch`: non-breaking fixes (styles, internal refactors, Storybook-only tweaks that do not change usage)
342
+ - `minor`: backwards-compatible feature or API additions (new component/prop), or behavior changes that may affect usage but are not breaking
343
+ - `major`: breaking changes (removed/renamed props, changed required behavior, incompatible defaults)
344
+ - `no-bump`: documentation-only or internal changes that should not publish
345
+
346
+ If you are unsure, choose `minor` and leave a note in the PR for review.