Skip to content

Commit

Permalink
Release 3.0.1 (mristin#119)
Browse files Browse the repository at this point in the history
* Change `ncc` from zeit to vercel (mristin#118)
* Add "transform" to the list of verbs (mristin#116)
* Add "group" to the list of verbs (mristin#106)
* Add expose to the list of verbs (mristin#104)
  • Loading branch information
mristin authored Oct 30, 2023
1 parent d7bd6c0 commit 18c427b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 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@v3.0.0
uses: mristin/opinionated-commit-message@v3.0.1
```
## 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@v3.0.0
uses: mristin/opinionated-commit-message@v3.0.1
with:
additional-verbs: 'chrusimusi, unit-test'
```
Expand All @@ -111,7 +111,7 @@ as input:
```yaml
steps:
- name: Check
uses: mristin/opinionated-commit-message@v3.0.0
uses: mristin/opinionated-commit-message@v3.0.1
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@v3.0.0
uses: mristin/opinionated-commit-message@v3.0.1
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@v3.0.0
uses: mristin/opinionated-commit-message@v3.0.1
with:
enforce-sign-off: 'true'
```
Expand All @@ -239,7 +239,7 @@ workflow on the push as well. GitHub does not include the content of commit
messages in the context payload, so checking all the commit messages of
the pull request would involve various API call and additional complexity.

To overcome this issue, run opinionanted-commit-message both on `pull_request`
To overcome this issue, run opinionated-commit-message both on `pull_request`
and `push`. Please upvote [this issue](
https://github.com/mristin/opinionated-commit-message/issues/28
) to signal the visibility and so that we could judge when this feature merits
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": "3.0.0",
"version": "3.0.1",
"description": "GitHub Action to check commit messages according to an opinionated style",
"keywords": [
"github",
Expand Down

0 comments on commit 18c427b

Please sign in to comment.