Add community-specific dtas configuration to integration values (#1222) #1717
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: Pre-commit (Helm) | |
on: | |
pull_request: | |
branches: | |
- master | |
- release/** | |
- next/** | |
paths: | |
- helm/** | |
- test/postman/helm/** | |
- .github/workflows/pre-commit-helm.yml | |
- "**.md" | |
- .pre-commit-config.yaml | |
push: | |
branches: | |
- master | |
- release/** | |
env: | |
# https://pre-commit.com/#temporarily-disabling-hooks | |
SKIP: docker-compose-check | |
jobs: | |
pre_commit: | |
name: Run pre-commit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # 4.2.0 | |
- uses: Alfresco/alfresco-build-tools/.github/actions/[email protected] | |
- name: Add dependency chart repos | |
run: | | |
for repo in $(yq eval-all \ | |
'. as $item ireduce ({}; . *+ $item ) | [.dependencies[].repository | select(. == "http*")] | unique | .[]' \ | |
./helm/*/Chart.yaml); do repo_name=$(echo "$repo" | awk -F/ '{print $3}') | |
helm repo add "$repo_name" "$repo" | |
done | |
- name: Run Pre-commit hooks | |
uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1 |