Skip to content

Commit

Permalink
Release 3.0.0 (#101)
Browse files Browse the repository at this point in the history
Non-breaking changes:

* Make max length of lines configurable (#96)
* Allow skipping message body check (#97)

Breaking change:

* Discontinue local scripts (#98)
  • Loading branch information
mristin authored Feb 27, 2022
1 parent a4b4e2a commit 40ed5f5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check
uses: mristin/opinionated-commit-message@v2.3.2
uses: mristin/opinionated-commit-message@v3
```
## Checked Events
Expand Down Expand Up @@ -99,7 +99,7 @@ string in the workflow file. For example:
```yaml
steps:
- name: Check
uses: mristin/opinionated-commit-message@v2
uses: mristin/opinionated-commit-message@v3
with:
additional-verbs: 'chrusimusi, unit-test'
```
Expand All @@ -111,7 +111,7 @@ as input:
```yaml
steps:
- name: Check
uses: mristin/opinionated-commit-message@v2
uses: mristin/opinionated-commit-message@v3
with:
path-to-additional-verbs: 'src/additional-verbs.txt'
```
Expand Down Expand Up @@ -153,7 +153,7 @@ You can allow one-liner commit messages by setting the flag `allow-one-liners`:
```yaml
steps:
- name: Check
uses: mristin/opinionated-commit-message@v2
uses: mristin/opinionated-commit-message@v3
with:
allow-one-liners: 'true'
```
Expand Down Expand Up @@ -219,7 +219,7 @@ We provide an `enforce-sign-off` flag so that you can enforce the sign-off in th
```yaml
steps:
- name: Check
uses: mristin/opinionated-commit-message@v2
uses: mristin/opinionated-commit-message@v3
with:
enforce-sign-off: 'true'
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mristin/opinionated-commit-message",
"version": "2.3.4",
"version": "3.0.0",
"description": "GitHub Action to check commit messages according to an opinionated style",
"keywords": [
"github",
Expand Down

0 comments on commit 40ed5f5

Please sign in to comment.