Skip to content

Commit 317079a

Browse files
author
{ravi kumar bulusu}
committed
added echo with colored text
1 parent 7088fcc commit 317079a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/first-workflow.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Echo Command 1 in Job 1
10-
run: echo "Step1 complete!"
10+
run: echo -e "\033[35mStep1 complete!\033[0m"
1111
- name: Echo Command 2 in Job 1
12-
run: echo "Step2 complete!"
12+
run: echo -e "\033[35mStep2 complete!\033[0m"
1313

1414
job2:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Cowsays
1818
uses: mscoutermarsh/cowsays-action@v1
1919
with:
20-
text: "Ready for prod–ship it!"
20+
text: "\033[35mReady for prod–ship it!\033[0m"
21+
run: echo $text

0 commit comments

Comments
 (0)