geminimock 0.1.6 → 0.1.8
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 +6 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -295,7 +295,12 @@ Troubleshooting steps:
|
|
|
295
295
|
|
|
296
296
|
## GitHub Release Automation
|
|
297
297
|
|
|
298
|
-
- On push to `main`, `auto-version-bump.yml` automatically
|
|
298
|
+
- On push to `main`, `auto-version-bump.yml` automatically bumps version in `package.json` and `package-lock.json`.
|
|
299
|
+
- Bump rule from pushed commit messages:
|
|
300
|
+
- `#major` or `BREAKING CHANGE` or `!:` -> major
|
|
301
|
+
- `#minor` -> minor
|
|
302
|
+
- default (or `#patch`) -> patch
|
|
303
|
+
- If multiple markers exist in the pushed commit range, priority is `major > minor > patch`.
|
|
299
304
|
- After bumping, `auto-version-bump.yml` triggers `release.yml` and `npm-publish.yml` via workflow dispatch.
|
|
300
305
|
- `release.yml` creates a release tag `v<version>` if it does not exist.
|
|
301
306
|
- Release notes are generated automatically from the merged changes.
|