refactor: update getKeyValue function documentation and adjust key lo… #159
Workflow file for this run
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: Build common Workflow | ||
on: | ||
push: | ||
paths: | ||
- 'charts/common/**' | ||
- '.github/workflows/common.yaml' | ||
jobs: | ||
pipeline: | ||
concurrency: | ||
group: common-${{ github.ref }} | ||
cancel-in-progress: true | ||
uses: openmfp/gha/.github/workflows/pipeline-chart.yml@main | ||
with: | ||
chartFolder: charts | ||
chartName: common | ||
additionalTestFilesCommand: '' | ||
chartRepos: 'bitnami=https://charts.bitnami.com/bitnami,openfga=https://openfga.github.io/helm-charts' | ||
skipVulnerabilityScan: true | ||
Check failure on line 19 in .github/workflows/common.yaml
|
||
secrets: inherit | ||
updateVersionFile: | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
needs: [pipeline] | ||
uses: openmfp/gha/.github/workflows/job-update-version-file.yml@main | ||
secrets: inherit | ||
with: | ||
componentVersionKey: "common" | ||
version: ${{ needs.pipeline.outputs.version }} |