charts/.github/workflows/pr-validate.yaml

23 lines
570 B
YAML
Raw Normal View History

name: "Pull Request: Validate"
on:
pull_request:
branches:
- master
concurrency:
group: ${{ github.head_ref }}-pr-validate
# cancel-in-progress: true
jobs:
pr-get-metadata:
uses: k8s-at-home/charts/.github/workflows/pr-get-metadata.yaml@master
charts-update-readme:
uses: k8s-at-home/charts/.github/workflows/charts-update-readme.yaml@master
needs:
- pr-get-metadata
with:
isRenovatePR: ${{ needs.pr-get-metadata.outputs.isRenovatePR }}
modifiedCharts: ${{ needs.pr-get-metadata.outputs.addedOrModifiedCharts }}