mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +00:00
b4af8c56c1
Signed-off-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <me@bjw-s.dev>
23 lines
570 B
YAML
23 lines
570 B
YAML
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 }}
|