Simplify workflow names for CI and CD by removing redundant descriptors
All checks were successful
CI / Build and Push Docker Image (push) Successful in 11s
All checks were successful
CI / Build and Push Docker Image (push) Successful in 11s
This commit is contained in:
4
.github/workflows/cd.yml
vendored
4
.github/workflows/cd.yml
vendored
@@ -2,12 +2,12 @@
|
|||||||
# This workflow deploys your application to Kubernetes cluster
|
# This workflow deploys your application to Kubernetes cluster
|
||||||
# Trigger: After successful CI build or manual dispatch
|
# Trigger: After successful CI build or manual dispatch
|
||||||
|
|
||||||
name: CD - Deploy to Kubernetes
|
name: CD
|
||||||
|
|
||||||
# Trigger configuration - automatic after CI success, manual dispatch available
|
# Trigger configuration - automatic after CI success, manual dispatch available
|
||||||
on:
|
on:
|
||||||
workflow_run:
|
workflow_run:
|
||||||
workflows: ["CI - Build and Push"]
|
workflows: ["CI"]
|
||||||
types:
|
types:
|
||||||
- completed
|
- completed
|
||||||
branches:
|
branches:
|
||||||
|
|||||||
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -2,7 +2,7 @@
|
|||||||
# This workflow builds and pushes Docker images to your private registry
|
# This workflow builds and pushes Docker images to your private registry
|
||||||
# Trigger: Push to dev branch or manual dispatch
|
# Trigger: Push to dev branch or manual dispatch
|
||||||
|
|
||||||
name: CI - Build and Push
|
name: CI
|
||||||
|
|
||||||
# Trigger configuration - automatic on dev push, manual dispatch available
|
# Trigger configuration - automatic on dev push, manual dispatch available
|
||||||
on:
|
on:
|
||||||
|
|||||||
Reference in New Issue
Block a user