-
Improvement
-
Resolution: Unresolved
-
Minor
-
None
A build ID is often an integer, not a string. This causes useless string interpolation, e.g.
selector: specific("${id_to_copy}")
vs.
selector: specific(id_to_copy)
(See also JENKINS-47074)