gitlab self-hosted free
version: 15.8
I’ve enable Code-Quality on our bigger repository and while it works , all findings are reported in all MR instead of displaying only the differences compared with the previous code-quality scan.
# .gitlab-ci.yml
include:
│ - template: Code-Quality.gitlab-ci.yml
code_quality:
│ cache: []
│ rules:
│ │ - if: $CODE_QUALITY_DISABLED
│ │ │ when: never
│ │ - if: $CI_PIPELINE_SOURCE == "merge_request_event" # Run code quality job in merge request pipelines
Do you have some guidance ? I did not find such issue reported in the documentation.
Best