Back to all reviewers

Address not mask

Azure/azure-sdk-for-net
Based on 2 comments
Other

Always address the root cause of CI/CD pipeline issues rather than masking them with quick fixes. This applies to encoding problems, build failures, and other CI-related issues.

CI/CD Other

Reviewer Prompt

Always address the root cause of CI/CD pipeline issues rather than masking them with quick fixes. This applies to encoding problems, build failures, and other CI-related issues.

Examples:

  1. Remove BOM characters that cause encoding issues:
    -<Project Sdk="Microsoft.NET.Sdk">
    +<Project Sdk="Microsoft.NET.Sdk">
    
  2. Don’t remove configuration that causes build failures - fix the underlying issue instead: ```diff
1.2.0-beta.1 + + 1.1.2

```

When CI/CD pipelines fail, investigate the root cause rather than making superficial changes that only hide the problem. This ensures that real issues are properly addressed, maintaining the integrity and reliability of your build and deployment processes.

2
Comments Analyzed
Other
Primary Language
CI/CD
Category

Source Discussions