cetec-design-system 0.0.47-0 โ 0.0.47
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 +23 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -156,7 +156,12 @@ Packages are published from the repo root with `dist` included in the published
|
|
|
156
156
|
|
|
157
157
|
### Contributing
|
|
158
158
|
|
|
159
|
-
- **
|
|
159
|
+
- **Workflow trigger**: Every push to `main` runs the release workflow.
|
|
160
|
+
- **Publishing behavior**: A merged change that resolves to a releasable bump publishes a prerelease by default. Add the `release` label to graduate that merge to a stable `latest` release.
|
|
161
|
+
- **Version bump labels**: Use `major`, `minor`, or `patch` to control the semver bump.
|
|
162
|
+
- **Default bump**: If the merged PR has no Auto semver label, Auto defaults the head change to `patch`.
|
|
163
|
+
- **No-release labels**: `internal`, `documentation`, `tests`, and `dependencies` do not publish on their own.
|
|
164
|
+
- **Skip label**: Use `skip-release` to prevent publishing.
|
|
160
165
|
- **Changelog**: Auto-generated based on PR labels and titles
|
|
161
166
|
- **PR Titles**: Must follow our defined format for Auto release automation:
|
|
162
167
|
|
|
@@ -197,12 +202,23 @@ Packages are published from the repo root with `dist` included in the published
|
|
|
197
202
|
|
|
198
203
|
### Release Labels
|
|
199
204
|
|
|
200
|
-
- `major` -
|
|
201
|
-
- `minor` -
|
|
202
|
-
- `patch` -
|
|
203
|
-
- `
|
|
204
|
-
- `
|
|
205
|
-
- `
|
|
205
|
+
- `major` - Major version bump (๐ฅ Breaking Change)
|
|
206
|
+
- `minor` - Minor version bump (๐ Enhancement)
|
|
207
|
+
- `patch` - Patch version bump (๐ Bug Fix)
|
|
208
|
+
- `release` - Graduate the publish from prerelease to stable `latest`
|
|
209
|
+
- `skip-release` - Do not publish a release
|
|
210
|
+
- `internal` - Internal changes only (๐ Internal)
|
|
211
|
+
- `documentation` - Documentation updates only (๐ Documentation)
|
|
212
|
+
- `tests` - Test-only changes (๐งช Tests)
|
|
213
|
+
- `dependencies` - Dependency updates only (๐ฉ Dependency Updates)
|
|
206
214
|
- `performance` - Performance improvements (๐ Performance)
|
|
207
215
|
|
|
216
|
+
Examples:
|
|
217
|
+
|
|
218
|
+
- `minor` => prerelease minor
|
|
219
|
+
- `minor` + `release` => stable minor release
|
|
220
|
+
- no Auto semver label => prerelease patch
|
|
221
|
+
- `documentation` only => no publish
|
|
222
|
+
- `skip-release` => no publish
|
|
223
|
+
|
|
208
224
|
See `.autorc` for the complete configuration.
|