Skip to content

Commit 6b9a739

Browse files
author
GitHub Action
committed
chore(release): publish 5.4.0 [skip-ci]
1 parent 3b6f002 commit 6b9a739

File tree

4 files changed

+25
-10
lines changed

4 files changed

+25
-10
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
All 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.4.0](https://github.com/wagoid/commitlint-github-action/compare/v5.3.1...v5.4.0) (2023-04-10)
6+
7+
8+
### Features
9+
10+
* **action:** adds flag to optionally fail on errors ([83467da](https://github.com/wagoid/commitlint-github-action/commit/83467da07bcf182bf7dead9d98090d358bb760d8))
11+
12+
13+
### Bug Fixes
14+
15+
* **action:** add field to action ([8589bb7](https://github.com/wagoid/commitlint-github-action/commit/8589bb7e04b6baba23e93083597321c592b18593))
16+
* **action:** fix bug with value, add tests ([2640e4c](https://github.com/wagoid/commitlint-github-action/commit/2640e4c8bf1ef522aea0d9fa997c4f07ee95ba97))
17+
* **action:** refactor a value, add to docs ([7991e57](https://github.com/wagoid/commitlint-github-action/commit/7991e57b35c9a86cdda880119d9c4ca3b975b4fd))
18+
* **docs:** remove dupe ([6a9739b](https://github.com/wagoid/commitlint-github-action/commit/6a9739b9a2f47cb6e51a850b6e82fa9c42a13f61))
19+
* **tests:** remove log ([097b726](https://github.com/wagoid/commitlint-github-action/commit/097b726807006a63d6f34782aad667815f4217dc))
20+
521
## [5.3.1](https://github.com/wagoid/commitlint-github-action/compare/v5.3.0...v5.3.1) (2023-02-15)
622

723
## [5.3.0](https://github.com/wagoid/commitlint-github-action/compare/v5.2.2...v5.3.0) (2022-11-24)

action.yml

+6-7
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ description: Lints Pull Request commit messages with commitlint
33
author: Wagner Santos
44
inputs:
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,23 +12,23 @@ 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
failOnErrors:
2322
description: Whether you want to fail on errors or not
24-
default: 'true'
23+
default: "true"
2524
required: true
2625
helpURL:
2726
description: Link to a page explaining your commit message convention
2827
default: https://github.com/conventional-changelog/commitlint/#what-is-commitlint
2928
required: false
3029
commitDepth:
3130
description: When set to a valid Integer value - X, considers only the latest X number of commits.
32-
default: ''
31+
default: ""
3332
required: false
3433
token:
3534
description: >
@@ -44,7 +43,7 @@ outputs:
4443
description: The error and warning messages for each one of the analyzed commits
4544
runs:
4645
using: docker
47-
image: docker://wagoid/commitlint-github-action:5.3.1
46+
image: docker://wagoid/commitlint-github-action:5.4.0
4847
branding:
4948
icon: check-square
5049
color: blue

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "commitlint-github-action",
3-
"version": "5.3.1",
3+
"version": "5.4.0",
44
"description": "commitlint github action",
55
"private": true,
66
"main": "./dist/run.js",

0 commit comments

Comments
 (0)