File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 82
82
run : ct lint --target-branch ${{ github.event.repository.default_branch }} --chart-dirs charts
83
83
84
84
- name : Create kind cluster
85
- if : steps.list-changed.outputs.changed == 'true'
85
+ if : steps.list-changed.outputs.changed == 'true' || github.ref_name == 'main'
86
86
uses : helm/kind-action@v1.12.0
87
87
88
88
- name : Run chart-testing (install)
89
- if : steps.list-changed.outputs.changed == 'true'
89
+ if : steps.list-changed.outputs.changed == 'true' || github.ref_name == 'main'
90
90
run : ct install --target-branch ${{ github.event.repository.default_branch }} --chart-dirs charts
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ jobs:
100
100
TAG_CONTEXT : ' repo'
101
101
WITH_V : true
102
102
PRERELEASE_SUFFIX : " beta"
103
- PRERELEASE : ${{ (github.base_ref == 'beta') && 'true' || (github.base_ref == 'main') && 'false' || (github.base_ref == 'integration ') && 'false' || 'true' }}
103
+ PRERELEASE : ${{ (github.ref_name == 'beta') && 'true' || (github.ref_name == 'main') && 'false' || (github.ref_name == 'feat/cli-scanner-tool ') && 'false' || 'true' }}
104
104
105
105
- name : Summary
106
106
run : |
You can’t perform that action at this time.
0 commit comments