mirror of
https://github.com/TeamPiped/Piped-Kubernetes.git
synced 2024-08-14 23:57:15 +00:00
Fix changelog checker
This commit is contained in:
parent
937437a2cd
commit
09541b7f9c
1 changed files with 1 additions and 2 deletions
3
.github/workflows/charts-changelog.yaml
vendored
3
.github/workflows/charts-changelog.yaml
vendored
|
|
@ -27,10 +27,9 @@ jobs:
|
||||||
- name: Check changelog annotations
|
- name: Check changelog annotations
|
||||||
if: inputs.isRenovatePR != 'true'
|
if: inputs.isRenovatePR != 'true'
|
||||||
run: |
|
run: |
|
||||||
pwd
|
|
||||||
IN_CHARTS=(${{ inputs.modifiedCharts }})
|
IN_CHARTS=(${{ inputs.modifiedCharts }})
|
||||||
CHARTS=($(python -c 'import sys;a=sys.argv[1].translate(str.maketrans("","","[]")).split(",");print(" ".join(a))' $IN_CHARTS))
|
CHARTS=($(python -c 'import sys;a=sys.argv[1].translate(str.maketrans("","","[]")).split(",");print(" ".join(a))' $IN_CHARTS))
|
||||||
for i in "${CHARTS[@]}"
|
for i in "charts/${CHARTS[@]}"
|
||||||
do
|
do
|
||||||
IFS='/' read -r -a chart_parts <<< "$i"
|
IFS='/' read -r -a chart_parts <<< "$i"
|
||||||
./.github/scripts/check-releasenotes.sh "${chart_parts[0]}/${chart_parts[1]}"
|
./.github/scripts/check-releasenotes.sh "${chart_parts[0]}/${chart_parts[1]}"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue