79665021

Date: 2025-06-13 14:59:16
Score: 2
Natty:
Report link

I added "?ignore_skipped=true" on badges configuration URLs to hide skipped pipelines :

gitlab.tech.orange/%{project_path}/-/commits/%{default_branch}?ignore_skipped=true

gitlab.tech.orange/%{project_path}/badges/%{default_branch}/pipeline.svg?ignore_skipped=true

Follow this solution to hide skipped pipelines :

https://forum.gitlab.com/t/force-pipeline-on-tag-push-when-commit-message-contains-skip-ci/60169/2

.gitlab-ci.yml

workflow:  
  rules:  
    - if: $CI_COMMIT_MESSAGE =\~ /^chore\\(release\\):/  
      when: never  
    - when: always  

.releaserc

    \[  
      "@semantic-release/git",  
      {  
        "assets": \["CHANGELOG.md", "package.json", "package-lock.json", "npm-shrinkwrap.json", "constants/version.ts", "sonar-project.properties"\],
  
        "message": "chore(release): ${nextRelease.version}\\n\\n${nextRelease.notes}"  
      }  
    \],
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Yoan Huret