This is an automated email from the ASF dual-hosted git repository.
randall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git
The following commit(s) were added to refs/heads/master by this push:
new 2116a01 Do not push or tag automatically with lerna version
2116a01 is described below
commit 2116a0144ad98d877d0926daa7695ba8889b8f8b
Author: Randall Leeds <[email protected]>
AuthorDate: Wed Feb 3 18:40:35 2021 -0800
Do not push or tag automatically with lerna version
This project bumps the version number before releasing, in order to
create artifacts for release votes. Therefore, lerna should not create
tags. As an additional protection, configure lerna not to push.
---
lerna.json | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lerna.json b/lerna.json
index 69a7a1d..de3c3e7 100644
--- a/lerna.json
+++ b/lerna.json
@@ -7,9 +7,9 @@
],
"command": {
"version": {
+ "noGitTagVersion": true,
+ "noPush": true,
"preid": "dev",
- "signGitCommit": true,
- "signGitTag": true
}
}
}