Remove link to parent pipeline from the badge

What does this MR do and why?

This MR removes a link to the parent pipeline from the badge on the child pipeline header. The link is not rendering correctly inside the badge in dark mode. Also, having a link as part of the badge is not recommended by the Pajamas guidelines.

The parent pipeline link is already available below on the same page, so we are not losing any navigation.

References

Screenshots or screen recordings

Before After
Screenshot_2025-07-24_at_11.11.29 Screenshot_2025-07-24_at_11.11.05
Screenshot_2025-07-24_at_11.11.51 Screenshot_2025-07-24_at_11.12.04

How to set up and validate locally

  1. Create a parent pipeline config, example:
stages:          
  - build
  - test
  - deploy

build-job:       
  stage: build
  script:
    - echo "Compiling the code..."
    - echo "Compile complete."

trigger_job:
  trigger:
    include:
      - local: child-pipeline.yml
  environment: production
  1. Create the child pipeline config, example:
downstream-job:       
  stage: test
  script:
    - echo "Compiling the code..."
    - echo "Compile complete."
  1. Navigate to the pipeline page and verify the child pipeline has a correct badge in the header.

MR acceptance checklist

Evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.

Related to #555375 (closed)

Edited by Anna Vovchenko

Merge request reports

Loading