diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6da7c0a..e807afa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ on: jobs: prepare: runs-on: ubuntu-latest - if: "! contains(github.event.head_commit.message, '[skip ci]')" + if: "!contains(github.event.head_commit.message, '[skip ci]')" steps: - run: echo "${{ github.event.head_commit.message }}" release: diff --git a/commitlint.config.js b/commitlint.config.js index b619a8b..8cf14a2 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -16,5 +16,6 @@ module.exports = { extends: ['@commitlint/config-conventional'], rules: { 'scope-case': [2, 'always', ['pascal-case', 'camel-case', 'kebab-case']], + 'body-max-line-length': [1, 'always', 100], }, };