Extract hard-coded configuration values into variables, parameters, or templates to improve reusability and simplify maintenance. When the same value is used in multiple places or might need to change in the future, define it once and reference it throughout your configuration files.
Extract hard-coded configuration values into variables, parameters, or templates to improve reusability and simplify maintenance. When the same value is used in multiple places or might need to change in the future, define it once and reference it throughout your configuration files.
Examples:
variables: timeoutPerTestCollection: 180
jobParameters: timeoutInMinutes: $ ```
This practice reduces duplication, centralizes configuration management, and makes future updates more efficient and less error-prone.
Enter the URL of a public GitHub repository