From fd93c28c33a13a4e3089af3e032cca8daeb51b87 Mon Sep 17 00:00:00 2001 From: John Boyes Date: Sat, 1 Aug 2020 17:59:20 +0700 Subject: [PATCH] Accept one line git commit messages (#19) Prior to this fix, one line git commit messages would be rejected by the check. Fix is to update to the latest version of the checker, which has the fix for this[1] [1] https://github.com/mristin/opinionated-commit-message#one-liners --- .github/workflows/check-commit-message.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check-commit-message.yml b/.github/workflows/check-commit-message.yml index 6631ee0..0c3eb33 100644 --- a/.github/workflows/check-commit-message.yml +++ b/.github/workflows/check-commit-message.yml @@ -15,4 +15,6 @@ jobs: runs-on: ubuntu-latest steps: - name: Check - uses: mristin/opinionated-commit-message@v2.0.0 + uses: mristin/opinionated-commit-message@v2.1.0 + with: + allow-one-liners: 'true'