Do not require version bump (#314)

* [CI] Do not require version bump when linting

* Fix formatting

### Motivation

With #292, we made the lint CI step require chart version bumps. That is an unnecessary requirement since we have a manual release process. Also, we didn't require it previously.

### Modifications

* Disable chart version bump

### Verifying this change

This is a trivial change.
This commit is contained in:
Michael Marshall 2022-10-19 22:12:38 -07:00 committed by GitHub
parent 8f033bd1a5
commit a41fbb2582
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,4 +60,4 @@ jobs:
- name: Run chart-testing (lint)
if: ${{ steps.check_changes.outputs.docs_only != 'true' }}
run: ct lint --target-branch ${{ github.event.repository.default_branch }}
run: ct lint --check-version-increment=false --target-branch ${{ github.event.repository.default_branch }}