Skip to content

Commit e0200bd

Browse files
committed
Cleanup naming
1 parent b4af493 commit e0200bd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/cicd.yml

+5-1
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:
@@ -19,6 +19,7 @@ on:
1919

2020
jobs:
2121
test:
22+
name: Test 🧪
2223
runs-on: ubuntu-latest
2324
steps:
2425
- name: Checkout repository
@@ -29,6 +30,7 @@ jobs:
2930
echo "Mock testing..."
3031
3132
deploy-to-staging:
33+
name: Deploy to Staging
3234
needs: test
3335
if: github.event_name == 'push' && github.ref_name == 'main'
3436
concurrency: staging
@@ -38,6 +40,7 @@ jobs:
3840
secrets: inherit
3941

4042
deploy-to-production:
43+
name: Deploy to Production
4144
needs: test
4245
if: github.event_name == 'release'
4346
concurrency: production
@@ -47,6 +50,7 @@ jobs:
4750
secrets: inherit
4851

4952
manual-deployment:
53+
name: Manual Deployment
5054
needs: test
5155
if: github.event_name == 'workflow_dispatch' && (success() || inputs.force == true)
5256
concurrency: ${{ inputs.environment }}

0 commit comments

Comments
 (0)