Skip to content

Commit

Permalink
Issue #69889: Refactor all references of ID to id
Browse files Browse the repository at this point in the history
  • Loading branch information
Bharath-Ganesh committed Apr 2, 2023
1 parent 6d0a5df commit 913a8fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ Input Example with `Message Parameter`:
input 'Proceed or Abort'


Input Example with `Custom ID`:
Every input step has an unique ID. It is used in the generated URL to proceed or abort.
Input Example with `Custom id`:
Every input step has an unique id. It is used in the generated URL to proceed or abort.

A specific ID could be used, for example, to mechanically respond to the input from some external process/tool.
A specific id could be used, for example, to mechanically respond to the input from some external process/tool.

input id: '2', message: 'input-message'

Expand All @@ -23,14 +23,14 @@ Input Example with `OK Button Caption`(Optional):
input message: 'input-message', ok: 'OK'

Input Example with `Allowed Submitter`:
User IDs and/or external group names of person or people permitted to respond to the input, separated by ','. Spaces will be trimmed automatically, so "Alice, Bob, Charles" is the same as "Alice,Bob,Charles".
User ids and/or external group names of person or people permitted to respond to the input, separated by ','. Spaces will be trimmed automatically, so "Alice, Bob, Charles" is the same as "Alice,Bob,Charles".
Note: Jenkins administrators are able to respond to the input regardless of the value of this parameter.

input message: '', submitter: 'jenkins-user, jenkins-user2'

Input Example with Parameter to store the `Approving Submitter`:

If specified, this is the name of the return value that will contain the ID of the user that approves this input. The return value will be handled in a fashion similar to the parameters value.
If specified, this is the name of the return value that will contain the id of the user that approves this input. The return value will be handled in a fashion similar to the parameters value.

input message: 'input-message', submitter: 'jenkins-submitter, jenkins-submitter2', submitterParameter: 'approvers-id-to-be-stored'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p>
Every <code>input</code> step has an unique ID. It is used in the generated URL to proceed or abort.
Every <code>input</code> step has an unique id. It is used in the generated URL to proceed or abort.
</p>
<p>
A specific ID could be used, for example, to mechanically respond to the input from some external process/tool.
A specific id could be used, for example, to mechanically respond to the input from some external process/tool.
</p>

0 comments on commit 913a8fe

Please sign in to comment.