Skip to content

Remove unused skipped CSS rule

Miguel Rincon requested to merge 389420-remove-unused-skipped-rule into master

What does this MR do and why?

Remove unused skipped CSS rule that is overridden in the same file:

ci-skipped is present twice, so only the last CSS rule gets applied.

Screenshots or screen recordings

Screenshot_2023-01-27_at_16.06.26

How to set up and validate locally

Run a pipeline that fails in its first stage while skip the next jobs:

stages:
  - fail
  - build

fail-job:
  stage: fail
  script:
    - exit 1

build-job: # will get skipped
  stage: build
  script:
    - echo "Compiling the code..."
    - echo "Compile complete."

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Related to #389420

Edited by Miguel Rincon

Merge request reports

Loading