Awesome Reviewers

Default to a single source-of-truth for infrastructure-as-code and ensure CI/CD owns generated deployment artifacts. This reduces drift and keeps pipeline behavior predictable.

Apply this standard:

Example (Bicep-first repo pattern):

// File: templates/deploy-devbox.bicep
// CI will generate the corresponding azuredeploy.json.
// DO NOT commit azuredeploy.json if it is generated in CI.
// DO commit only the .bicep source plus clear metadata/justification when needed.

Result: PRs stay focused on intent (source), CI produces deployable artifacts (outputs), and deployment validation settings align with what the pipeline can automate.