@storm-software/git-tools 1.32.3 → 1.32.4
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/CHANGELOG.md +12 -0
- package/package.json +1 -1
- package/src/release/nx-release.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.32.4 (2024-01-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **git-tools:** Added skip ci to release commit message ([2e808a18](https://github.com/storm-software/storm-ops/commit/2e808a18))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.32.3 (2024-01-27)
|
|
2
14
|
|
|
3
15
|
|
package/package.json
CHANGED
|
@@ -69,7 +69,7 @@ export const runRelease = async (
|
|
|
69
69
|
gitCommit: true,
|
|
70
70
|
gitCommitMessage: `chore(${
|
|
71
71
|
options.project ? options.project : "monorepo"
|
|
72
|
-
}): Release latest workspace packages`,
|
|
72
|
+
}): Release latest workspace packages [skip ci]`,
|
|
73
73
|
workspaceChangelog: nxReleaseConfig.projectsRelationship === "fixed"
|
|
74
74
|
});
|
|
75
75
|
|