Skip to content

Commit

Permalink
RA-1298: adds description of copy radixconfig.yaml step (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
keaaa authored Mar 24, 2020
1 parent db36ec5 commit 47bc762
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/job-overview/step-summary.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ const getDescription = step => {
return 'Cloning Radix config from master branch';
}

if (step.name === 'config-2-map') {
return 'Copying radixconfig.yaml from master branch';
}

if (step.name === 'clone') {
return 'Cloning repository';
}
Expand Down
5 changes: 5 additions & 0 deletions src/components/job-overview/steps-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
faMagic,
faQuestionCircle,
faEye,
faCopy,
} from '@fortawesome/free-solid-svg-icons';
import { faGithub } from '@fortawesome/free-brands-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
Expand All @@ -30,6 +31,10 @@ const getStepIcon = step => {
return faGithub;
}

if (step.name === 'config-2-map') {
return faCopy;
}

if (step.name === 'radix-pipeline') {
return faTachometerAlt;
}
Expand Down

0 comments on commit 47bc762

Please sign in to comment.