Skip to content
Snippets Groups Projects
Select Git revision
  • 9a97303cca5af13e4895486f3c75eedbc28f8f16
  • master default protected
  • v1.14.7
  • v1.14.6
  • v1.14.5
  • v1.14.4
  • v1.14.3
  • v1.14.2
  • v1.14.1
  • v1.14.0
  • v1.13.2
  • v1.13.1
  • v1.13.0
  • v1.12.1
  • v1.12.0
  • v1.11.1
  • v1.11.0
  • v1.10.0
  • v1.9.2
  • v1.9.1
  • v1.9.0
  • v1.8.4
22 results

README-sudorule.md

Blame
  • Release-Latest.gitlab-ci.yml 1.22 KiB
    include:
      - project: 'tools/continuous-integration/auto-devops/defaults'
        file: 'Defaults.gitlab-ci.yml'
        ref: main
    
    ##########################################################################################################
    
    ### CHANGE RULES
    
    test:
      rules:
        - if: '$TEST_DISABLED'
          when: never
        - if: '$CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH'
    
    code_quality:
      rules:
        - if: '$CODE_QUALITY_DISABLED'
          when: never
        - if: '$CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH'
    
    container_scanning:
      rules:
        - if: '$CONTAINER_SCANNING_DISABLED'
          when: never
        - if: '$CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH'
    
    secret_detection:
      rules:
        - if: '$SECRET_DETECTION_DISABLED'
          when: never
        - if: '$CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH'
    
    semgrep-sast:
      rules:
        - if: $SAST_DISABLED == 'true' || $SAST_DISABLED == '1'
          when: never
        - if: $SAST_EXCLUDED_ANALYZERS =~ /semgrep/
          when: never
        - if: $CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH
          exists:
            - '**/*.py'
            - '**/*.js'
            - '**/*.jsx'
            - '**/*.ts'
            - '**/*.tsx'
            - '**/*.c'
            - '**/*.go'
            - '**/*.java'
            - '**/*.cs'
            - '**/*.html'
            - '**/*.scala'
            - '**/*.sc'