diff --git a/.github/workflows/check-commit.yaml b/.github/workflows/check-commit.yaml index 5ae29471..93f8b578 100644 --- a/.github/workflows/check-commit.yaml +++ b/.github/workflows/check-commit.yaml @@ -12,8 +12,4 @@ jobs: ref: ${{ github.ref }} fetch-depth: 0 - name: Check for fixup! commits - run: | - git fetch origin - git status - git log origin/main..HEAD - git log origin/main..HEAD | grep -ie '^ fixup!' && exit 1 || true + run: git log origin/main..HEAD | grep -ie '^ fixup!' && exit 1 || true