.
All checks were successful
Lint and Test Charts / lint-test (push) Successful in 18s
Testing pipes / Explore-Gitea-Actions (push) Successful in 32s

This commit is contained in:
Jonas Forsberg 2024-10-15 10:44:25 +02:00
parent faa5a34ae2
commit c0e50cede8

View File

@ -30,14 +30,14 @@ jobs:
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
changed=$(ct list-changed --target-branch ${{ gitea.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi
- name: Run chart-testing (lint)
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --target-branch ${{ github.event.repository.default_branch }}
run: ct lint --target-branch ${{ gitea.event.repository.default_branch }}
- name: Create kind cluster
if: steps.list-changed.outputs.changed == 'true'
@ -45,4 +45,4 @@ jobs:
- name: Run chart-testing (install)
if: steps.list-changed.outputs.changed == 'true'
run: ct install --target-branch ${{ github.event.repository.default_branch }}
run: ct install --target-branch ${{ gitea.event.repository.default_branch }}