Skip to content

Commit 7a7176f

Browse files
committed
chore(ci): add CI workflow for manifest
1 parent 640233e commit 7a7176f

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.github/workflows/manifest-ci.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Chatbot Manifest CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- '.github/workflows/manifest-ci.yml'
9+
- 'manifests/**'
10+
pull_request:
11+
types:
12+
- opened
13+
- synchronize
14+
paths:
15+
- '.github/workflows/manifest-ci.yml'
16+
- 'manifests/**'
17+
workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI
18+
19+
jobs:
20+
kustomize-istio:
21+
name: Kustomize Istio
22+
runs-on: ubuntu-latest
23+
defaults:
24+
run:
25+
working-directory: manifests/overlays/istio
26+
steps:
27+
- uses: actions/checkout@v4
28+
- uses: actions-hub/kubectl@v1.31.1
29+
with:
30+
args: kustomize
31+
kustomize-knative:
32+
name: Kustomize Knative
33+
runs-on: ubuntu-latest
34+
defaults:
35+
run:
36+
working-directory: manifests/overlays/knative-serving
37+
steps:
38+
- uses: actions/checkout@v4
39+
- uses: actions-hub/kubectl@v1.31.1
40+
with:
41+
args: kustomize

0 commit comments

Comments
 (0)