From 587bb91c9a0a9f8eaab18c3ee4ef9f1cea9a8b48 Mon Sep 17 00:00:00 2001 From: Cesar S Date: Tue, 14 Jun 2022 00:08:53 -0500 Subject: [PATCH] docs(configuration.md): `addChannel` step is skipped when `dryRun` is enabled (#2465) Add `addChannel` to the list of steps that are skipped by dryRun=true --- docs/usage/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/configuration.md b/docs/usage/configuration.md index 38e2213c..765e5ccb 100644 --- a/docs/usage/configuration.md +++ b/docs/usage/configuration.md @@ -116,7 +116,7 @@ Type: `Boolean`
Default: `false` if running in a CI environment, `true` otherwise
CLI arguments: `-d`, `--dry-run` -The objective of the dry-run mode is to get a preview of the pending release. Dry-run mode skips the following steps: prepare, publish, success and fail. In addition to this it prints the next version and release notes to the console. +The objective of the dry-run mode is to get a preview of the pending release. Dry-run mode skips the following steps: prepare, publish, addChannel, success and fail. In addition to this it prints the next version and release notes to the console. **Note**: The Dry-run mode verifies the repository push permission, even though nothing will be pushed. The verification is done to help user to figure out potential configuration issues.