diff --git a/ui/src/features/project/pipelines/nodes/stage-node.tsx b/ui/src/features/project/pipelines/nodes/stage-node.tsx index 7d1c4f5e4..92b8b80a2 100644 --- a/ui/src/features/project/pipelines/nodes/stage-node.tsx +++ b/ui/src/features/project/pipelines/nodes/stage-node.tsx @@ -3,6 +3,7 @@ import { faBullseye, faCircleCheck, faCircleNotch, + faCodePullRequest, faGear, faTruckArrowRight } from '@fortawesome/free-solid-svg-icons'; @@ -78,6 +79,13 @@ export const StageNode = ({

{stage.metadata?.name}
+ {(stage?.spec?.promotionMechanisms?.gitRepoUpdates || []).some( + (g) => g.pullRequest + ) && ( + + + + )} {!stage?.status?.currentPromotion && stage.status?.lastPromotion && (