ci: [bot] Update 'README.md' #1167
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update metadata files for release | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- release-please--branches--main--components-* | |
jobs: | |
getChangedChart: | |
uses: ./.github/workflows/get-changed-chart.yaml | |
update-metadata-files: | |
runs-on: ubuntu-22.04 | |
needs: getChangedChart | |
name: update metadata file for release | |
env: | |
CT_TARGET_BRANCH: ${{ github.event.pull_request.base.ref || github.event.repository.default_branch }} | |
CHART: ${{ needs.getChangedChart.outputs.chart }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.ACTIONS_BOT_TOKEN }} | |
- run: pip install yq | |
- name: Install sponge | |
run: sudo apt-get -yq install moreutils | |
- run: ./.github/scripts/prepare-values.sh "charts/$CHART" | |
- run: ./.github/scripts/extract-artifacthub-images.sh "charts/$CHART" | |
- run: ./.github/scripts/enforce-trusted-registries.sh "charts/$CHART" | |
- name: Commit artifacthub images | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: "ci: [bot] Update images in 'Chart.yaml'" | |
default_author: github_actions | |
push: false | |
add: charts/${{ needs.getChangedChart.outputs.chart }}/Chart.yaml | |
- run: pip install json-schema-for-humans | |
- name: generate values.md | |
run: | | |
set -ex | |
if ! [[ -f "charts/$CHART/values.schema.json" ]]; then | |
echo "No values.schema.json found for $CHART" >/dev/stderr | |
exit 0 | |
fi | |
generate-schema-doc --config-file .github/json-schema-to-md.yaml "charts/$CHART/values.schema.json" "charts/$CHART/values.md" | |
- name: generate Docs | |
uses: docker://jnorwood/helm-docs:latest | |
with: | |
args: -g charts/${{ needs.getChangedChart.outputs.chart }} | |
- name: Commit README | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: "ci: [bot] Update 'README.md'" | |
default_author: github_actions | |
push: true | |
add: charts/${{ needs.getChangedChart.outputs.chart }}/README.md |