We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
version
1 parent 3a390f4 commit de4df5cCopy full SHA for de4df5c
action.yml
@@ -6,14 +6,17 @@ inputs:
6
from:
7
description: Lower end of the commit range to lint
8
default: HEAD~1
9
+ version:
10
+ description: Version of @commitlint/cli
11
+ default: latest
12
13
runs:
14
using: composite
15
steps:
16
- name: Install commitlint
17
shell: bash
18
run: |
- command -v commitlint || npm install --global commitlint
19
+ command -v commitlint || npm install --global commitlint@{{ inputs.version }}
20
commitlint --version
21
22
- name: Check config
0 commit comments