We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4af493 commit e0200bdCopy full SHA for e0200bd
.github/workflows/cicd.yml
@@ -1,4 +1,4 @@
1
-name: CI/CD Workflow
+name: CI/CD Workflow 🚀
2
3
on:
4
push:
@@ -19,6 +19,7 @@ on:
19
20
jobs:
21
test:
22
+ name: Test 🧪
23
runs-on: ubuntu-latest
24
steps:
25
- name: Checkout repository
@@ -29,6 +30,7 @@ jobs:
29
30
echo "Mock testing..."
31
32
deploy-to-staging:
33
+ name: Deploy to Staging
34
needs: test
35
if: github.event_name == 'push' && github.ref_name == 'main'
36
concurrency: staging
@@ -38,6 +40,7 @@ jobs:
38
40
secrets: inherit
39
41
42
deploy-to-production:
43
+ name: Deploy to Production
44
45
if: github.event_name == 'release'
46
concurrency: production
@@ -47,6 +50,7 @@ jobs:
47
50
48
51
49
52
manual-deployment:
53
+ name: Manual Deployment
54
55
if: github.event_name == 'workflow_dispatch' && (success() || inputs.force == true)
56
concurrency: ${{ inputs.environment }}
0 commit comments