bkper 4.11.2 → 4.11.3
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 +9 -0
- package/lib/docs/cli-reference.md +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -912,3 +912,12 @@ Bkper.setConfig({
|
|
|
912
912
|
oauthTokenProvider: async () => getOAuthToken(),
|
|
913
913
|
});
|
|
914
914
|
```
|
|
915
|
+
|
|
916
|
+
## Release process (maintainers)
|
|
917
|
+
|
|
918
|
+
Releases are published by GitHub Actions (Trusted Publisher with OIDC), not from local machines.
|
|
919
|
+
|
|
920
|
+
- Merge a PR into `main` with one release label: `release:patch`, `release:minor`, or `release:major`
|
|
921
|
+
- On each `main` push, the delivery workflow checks the merged PR associated with that commit, computes the next version from the latest release tag, publishes to npm, and pushes the new tag
|
|
922
|
+
- Without a release label, publish is skipped
|
|
923
|
+
- Dependabot Pi update PRs are automatically labeled `release:patch` and set to GitHub native auto-merge when repo auto-merge and required checks are enabled
|
|
@@ -912,3 +912,12 @@ Bkper.setConfig({
|
|
|
912
912
|
oauthTokenProvider: async () => getOAuthToken(),
|
|
913
913
|
});
|
|
914
914
|
```
|
|
915
|
+
|
|
916
|
+
## Release process (maintainers)
|
|
917
|
+
|
|
918
|
+
Releases are published by GitHub Actions (Trusted Publisher with OIDC), not from local machines.
|
|
919
|
+
|
|
920
|
+
- Merge a PR into `main` with one release label: `release:patch`, `release:minor`, or `release:major`
|
|
921
|
+
- On each `main` push, the delivery workflow checks the merged PR associated with that commit, computes the next version from the latest release tag, publishes to npm, and pushes the new tag
|
|
922
|
+
- Without a release label, publish is skipped
|
|
923
|
+
- Dependabot Pi update PRs are automatically labeled `release:patch` and set to GitHub native auto-merge when repo auto-merge and required checks are enabled
|