We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3a16d3 commit e747711Copy full SHA for e747711
.github/workflows/helm-chart-lint.yml
@@ -76,11 +76,11 @@ jobs:
76
- name: Run chart-testing (list-changed)
77
id: list-changed
78
run: |
79
- changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
+ changed=$(ct list-changed --target-branch ${{ github.event.ref }})
80
if [[ -n "$changed" ]]; then
81
echo "CHART_CHANGED=true" >> $GITHUB_ENV
82
fi
83
84
# run chart linting
85
- name: Run chart-testing (lint)
86
- run: ct lint --target-branch ${{ github.event.repository.default_branch }} --config charts/config/chart-testing-config.yaml
+ run: ct lint --target-branch ${{ github.event.ref }} --config charts/config/chart-testing-config.yaml
0 commit comments