Skip to content

Commit d7171a5

Browse files
authored
Emojify
1 parent e0200bd commit d7171a5

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/cicd.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI/CD Workflow 🚀
1+
name: CI/CD Workflow
22

33
on:
44
push:
@@ -30,7 +30,7 @@ jobs:
3030
echo "Mock testing..."
3131
3232
deploy-to-staging:
33-
name: Deploy to Staging
33+
name: Deploy to Staging 🚧
3434
needs: test
3535
if: github.event_name == 'push' && github.ref_name == 'main'
3636
concurrency: staging
@@ -40,7 +40,7 @@ jobs:
4040
secrets: inherit
4141

4242
deploy-to-production:
43-
name: Deploy to Production
43+
name: Deploy to Production 🌟
4444
needs: test
4545
if: github.event_name == 'release'
4646
concurrency: production
@@ -50,7 +50,7 @@ jobs:
5050
secrets: inherit
5151

5252
manual-deployment:
53-
name: Manual Deployment
53+
name: Manual Deployment ❗️
5454
needs: test
5555
if: github.event_name == 'workflow_dispatch' && (success() || inputs.force == true)
5656
concurrency: ${{ inputs.environment }}

.github/workflows/deploy.yml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010

1111
jobs:
1212
deploy:
13+
name: 🚀
1314
runs-on: ubuntu-latest
1415
environment: ${{ inputs.environment }}
1516

0 commit comments

Comments
 (0)