Ensure configuration parameters have appropriate default values and avoid hardcoded or overly specific settings. Default values should be conservative and safe for production environments, while avoiding personal assignments or environment-specific assumptions.
Examples of good practices:
WORKFLOW_LOG_CLEANUP_ENABLED: ${WORKFLOW_LOG_CLEANUP_ENABLED:-false}
instead of true
assignees
in configuration filesThis ensures configurations are maintainable, secure by default, and appropriate for team environments rather than individual setups.
Enter the URL of a public GitHub repository