codex-devtools 0.1.5 → 0.1.7
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 +12 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -105,6 +105,7 @@ Build artifacts land in `release/`.
|
|
|
105
105
|
| Workflow | Trigger | Action |
|
|
106
106
|
|----------|---------|--------|
|
|
107
107
|
| `ci.yml` | Push to `main`, PRs | Typecheck, lint, build, test |
|
|
108
|
+
| `cut-release-tag.yml` | Successful `CI` on `main`, manual dispatch | Compute next semver tag and trigger release publish workflows |
|
|
108
109
|
| `release.yml` | Semver tags (`v*`), manual | Cross-platform packaging |
|
|
109
110
|
| `npm-publish.yml` | Semver tags (`v*`), manual | Publish to npm |
|
|
110
111
|
|
|
@@ -112,9 +113,18 @@ Required secret: `NPM_TOKEN` (npm automation token with publish + 2FA bypass).
|
|
|
112
113
|
|
|
113
114
|
## Releasing
|
|
114
115
|
|
|
116
|
+
Release tags are cut automatically after `CI` succeeds on `main`.
|
|
117
|
+
|
|
118
|
+
Automatic bump rules (Conventional Commit aware):
|
|
119
|
+
|
|
120
|
+
- `major`: any commit subject with `!` (for example `feat!: ...`) or body with `BREAKING CHANGE:`
|
|
121
|
+
- `minor`: at least one `feat:`
|
|
122
|
+
- `patch`: `fix:`, `perf:`, `revert:`, or fallback when no release type is detected
|
|
123
|
+
|
|
124
|
+
Manual override:
|
|
125
|
+
|
|
115
126
|
```bash
|
|
116
|
-
|
|
117
|
-
git push origin main --follow-tags
|
|
127
|
+
gh workflow run "Cut Release Tag" --ref main -f bump=major
|
|
118
128
|
```
|
|
119
129
|
|
|
120
130
|
Tags must be valid semver (`vMAJOR.MINOR.PATCH`). Pre-release metadata supported (`v1.2.3-beta.1`).
|