run validate workflow when workflow itself is modified
Some checks failed
/ render-helm (push) Failing after 15s
Some checks failed
/ render-helm (push) Failing after 15s
This commit is contained in:
parent
c593120e46
commit
9eec9a89bb
2 changed files with 16 additions and 0 deletions
15
.forgejo/workflows/check-helm-render.yaml
Normal file
15
.forgejo/workflows/check-helm-render.yaml
Normal file
|
@ -0,0 +1,15 @@
|
|||
on:
|
||||
push:
|
||||
paths:
|
||||
- helm/*
|
||||
- .forgejo/workflows/validate-helm-render.yaml
|
||||
jobs:
|
||||
render-helm:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: library/alpine
|
||||
steps:
|
||||
- run: apk add --no-cache nodejs git helm kubectl
|
||||
- uses: actions/checkout@v5
|
||||
- run: helm/render-all.sh
|
||||
- run: git diff --exit-code
|
|
@ -2,6 +2,7 @@ on:
|
|||
push:
|
||||
paths:
|
||||
- helm/*
|
||||
- .forgejo/workflows/check-helm-render.yaml
|
||||
jobs:
|
||||
render-helm:
|
||||
runs-on: docker
|
||||
|
|
Loading…
Reference in a new issue