Skip to content

fix(deps): update dependency io.javaoperatorsdk:operator-framework to v4.4.3 #8

fix(deps): update dependency io.javaoperatorsdk:operator-framework to v4.4.3

fix(deps): update dependency io.javaoperatorsdk:operator-framework to v4.4.3 #8

Workflow file for this run

name: Check commit message format
on:
pull_request:
jobs:
commit-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
with:
fetch-depth: 0
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
- name: Install commitlint
run: |
npm install @commitlint/cli@17.7.1 @commitlint/config-conventional
echo "module.exports = {extends: ['@commitlint/config-conventional']}" > commitlint.config.js
- name: Validate PR commits with commitlint
run: |
npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose