11
0
Fork 0
mirror of https://github.com/wagoid/commitlint-github-action.git synced 2026-04-06 09:36:53 +00:00

fix: action failing to check footer of a single commit

Fixes #187
This commit is contained in:
wagoid 2021-09-11 08:22:56 -03:00
parent 0e361e0644
commit 961b6d4cd7
3 changed files with 11 additions and 4 deletions

View file

@ -0,0 +1,6 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'signed-off-by': [2, 'always', 'Signed-off-by:'],
},
}