Skip to content

Commit

Permalink
Run lint with version check in release tracking PR
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverguenther committed Nov 29, 2023
1 parent 0075da6 commit ad58066
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,14 @@ jobs:
echo "changed=true" >> $GITHUB_OUTPUT
fi
- name: Run chart-testing (lint)
- name: Run chart-testing (lint) WITHOUT version check
if: github.event.pull_request.title != 'Release Tracking'
run: ct lint --target-branch ${{ github.event.repository.default_branch }} --check-version-increment=false

- name: Run chart-testing (lint) WITH version check
if: github.event.pull_request.title == 'Release Tracking'
run: ct lint --target-branch ${{ github.event.repository.default_branch }} --check-version-increment=true

- name: Create kind cluster
uses: helm/[email protected]
if: steps.list-changed.outputs.changed == 'true'
Expand Down

0 comments on commit ad58066

Please sign in to comment.