Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

println("Welcome to ${FD_PROJECT_NAME}, ${prm1} ")

FD_PROJECT_NAME is already available, so you don’t need to do anything to make it workfor that variable.

However, prm1 is a custom named parameter, so you would need to send it in as a User Input.

...

Now, the username of the person submitting the workflow is passed in as prm1.

Welcome to groovy Args, karl

...