diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index e9a864a..92d5a2d 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -23,6 +23,14 @@ jobs: flags: 'i' error: 'Commits addressing code review feedback should typically be squashed into the commits under review' + - name: 'Verify no "fixup!" commits' + uses: tim-actions/commit-message-checker-with-regex@d6d9770051dd6460679d1cab1dcaa8cffc5c2bbd + with: + commits: ${{ steps.get-pr-commits.outputs.commits }} + pattern: '^(?!fixup!)' + flags: 'i' + error: 'Fixup commits should be squashed into the commits under review' + chart-testing: name: Helm Chart Linting runs-on: ubuntu-latest