name: Check on: pull_request: types: [opened, synchronize, reopened, ready_for_review] branches: - main merge_group: permissions: read-all concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} cancel-in-progress: true jobs: check: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: lfs: true fetch-depth: 0 - name: Check for LFS files run: ./.github/scripts/lfs.sh - name: Lint commit messages uses: wagoid/commitlint-github-action@v5 with: failOnWarnings: false