File tree Expand file tree Collapse file tree 4 files changed +15
-9
lines changed Expand file tree Collapse file tree 4 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 22
33All notable changes to this project will be documented in this file. See [ commit-and-tag-version] ( https://github.com/absolute-version/commit-and-tag-version ) for commit guidelines.
44
5+ ## [ 5.3.0] ( https://github.com/wagoid/commitlint-github-action/compare/v5.2.2...v5.3.0 ) (2022-11-24)
6+
7+
8+ ### Features
9+
10+ * adds commitDepth as new input param ([ b0982e3] ( https://github.com/wagoid/commitlint-github-action/commit/b0982e3b0a9fd9398bcfdf10c12df058bb8ffaf2 ) )
11+
512### [ 5.2.2] ( https://github.com/wagoid/commitlint-github-action/compare/v5.2.1...v5.2.2 ) (2022-10-24)
613
714### [ 5.2.1] ( https://github.com/wagoid/commitlint-github-action/compare/v5.2.0...v5.2.1 ) (2022-10-24)
Original file line number Diff line number Diff line change @@ -3,8 +3,7 @@ description: Lints Pull Request commit messages with commitlint
33author : Wagner Santos
44inputs :
55 configFile :
6- description :
7- Commitlint config file. If the file doesn't exist, config-conventional settings will be
6+ description : Commitlint config file. If the file doesn't exist, config-conventional settings will be
87 loaded as a fallback.
98 default : ./commitlint.config.js
109 required : false
@@ -13,19 +12,19 @@ inputs:
1312 When set to true, we follow only the first parent commit when seeing a merge commit.
1413 More info in git-log docs
1514 https://git-scm.com/docs/git-log#Documentation/git-log.txt---first-parent
16- default : ' true'
15+ default : " true"
1716 required : false
1817 failOnWarnings :
1918 description : Whether you want to fail on warnings or not
20- default : ' false'
19+ default : " false"
2120 required : false
2221 helpURL :
2322 description : Link to a page explaining your commit message convention
2423 default : https://github.com/conventional-changelog/commitlint/#what-is-commitlint
2524 required : false
2625 commitDepth :
2726 description : When set to a valid Integer value - X, considers only the latest X number of commits.
28- default : ' '
27+ default : " "
2928 required : false
3029 token :
3130 description : >
@@ -40,7 +39,7 @@ outputs:
4039 description : The error and warning messages for each one of the analyzed commits
4140runs :
4241 using : docker
43- image : docker://wagoid/commitlint-github-action:5.2.2
42+ image : docker://wagoid/commitlint-github-action:5.3.0
4443branding :
4544 icon : check-square
4645 color : blue
Original file line number Diff line number Diff line change 11{
22 "name" : " commitlint-github-action" ,
3- "version" : " 5.2.2 " ,
3+ "version" : " 5.3.0 " ,
44 "description" : " commitlint github action" ,
55 "private" : true ,
66 "main" : " ./dist/run.js" ,
You can’t perform that action at this time.
0 commit comments