11
0
Fork 0
mirror of https://github.com/wagoid/commitlint-github-action.git synced 2026-04-09 02:54:18 +00:00

feat: add helpURL parameter

This commit is contained in:
Wagner Santos 2020-02-01 16:49:21 -03:00
parent 73133a4495
commit f4821d1c76
4 changed files with 18 additions and 7 deletions

View file

@ -3,17 +3,21 @@ description: 'Lints Pull Request commit messages with commitlint'
author: 'Wagner Santos'
inputs:
configFile:
description: 'commitlint config file'
description: 'Commitlint config file'
default: './commitlint.config.js'
required: false
firstParent:
description: 'when set to true, we follow only the first parent commit when seeing a merge commit. More info in git-log docs https://git-scm.com/docs/git-log#Documentation/git-log.txt---first-parent'
description: 'When set to true, we follow only the first parent commit when seeing a merge commit. More info in git-log docs https://git-scm.com/docs/git-log#Documentation/git-log.txt---first-parent'
default: 'true'
required: false
failOnWarnings:
description: 'whether you want to fail on warnings or not'
description: 'Whether you want to fail on warnings or not'
default: 'false'
required: false
helpURL:
description: 'Link to a page explaining your commit message convention'
default: 'https://github.com/conventional-changelog/commitlint/#what-is-commitlint'
required: false
runs:
using: 'docker'
image: 'docker://wagoid/commitlint-github-action:1.3.2'