From b2e345f4dc9776a169c7d90daa03b57ca62af4e0 Mon Sep 17 00:00:00 2001 From: Christopher Fenner <26137398+CCFenner@users.noreply.github.com> Date: Mon, 28 Sep 2020 11:45:21 +0200 Subject: [PATCH] docs: add note about Jenkins credentials (#2078) * add note about Jenkins credentials * remove copy&paste issue * Update parameters.go --- pkg/documentation/generator/parameters.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/documentation/generator/parameters.go b/pkg/documentation/generator/parameters.go index 21152f0d6..addc33dbb 100644 --- a/pkg/documentation/generator/parameters.go +++ b/pkg/documentation/generator/parameters.go @@ -121,7 +121,7 @@ func createParameterDetails(stepData *config.StepData) string { details += fmt.Sprintf("#### %v\n\n", secret.Name) if !contains(stepParameterNames, secret.Name) { - details += "**Jenkins-specific:** Used for proper environment setup.\n\n" + details += "**Jenkins-specific:** Used for proper environment setup. See *[using credentials](https://www.jenkins.io/doc/book/using/using-credentials/)* for details.\n\n" } details += secret.Description + "\n\n"