Skip to content

chore(event-bingo): update images to sha-f17837f #37

chore(event-bingo): update images to sha-f17837f

chore(event-bingo): update images to sha-f17837f #37

Workflow file for this run

name: Validate Manifests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Kustomize
uses: imranismail/setup-kustomize@v2
with:
kustomize-version: "5.4.2"
- name: Validate Infrastructure Manifests
run: |
for dir in infrastructure/overlays/*; do
if [ -d "$dir" ]; then
echo "Validating $dir..."
kustomize build "$dir" > /dev/null
fi
done
- name: Validate Service Manifests
run: |
for dir in services/*/overlays/*; do
if [ -d "$dir" ]; then
echo "Validating $dir..."
kustomize build "$dir" > /dev/null
fi
done