diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 0ed7170..682a73c 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -1,4 +1,4 @@ -name: CI/CD Workflow +name: CI/CD Workflow ๐Ÿš€ on: push: @@ -19,6 +19,7 @@ on: jobs: test: + name: Test ๐Ÿงช runs-on: ubuntu-latest steps: - name: Checkout repository @@ -29,6 +30,7 @@ jobs: echo "Mock testing..." deploy-to-staging: + name: Deploy to Staging needs: test if: github.event_name == 'push' && github.ref_name == 'main' concurrency: staging @@ -38,6 +40,7 @@ jobs: secrets: inherit deploy-to-production: + name: Deploy to Production needs: test if: github.event_name == 'release' concurrency: production @@ -47,6 +50,7 @@ jobs: secrets: inherit manual-deployment: + name: Manual Deployment needs: test if: github.event_name == 'workflow_dispatch' && (success() || inputs.force == true) concurrency: ${{ inputs.environment }}