From 0cc64c05ba23b8179973090d3509f31dba971afb Mon Sep 17 00:00:00 2001 From: adrians5j Date: Thu, 23 Nov 2023 22:33:44 +0100 Subject: [PATCH] docs: update README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 645073b..f0ac267 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A simple GitHub action that makes sure all commit messages are following the [Co Note that, typically, you would make this check on a pre-commit hook (for example, using something like [Commitlint](https://commitlint.js.org/)), but those can easily be skipped, hence this GitHub action. ### Usage -Latest version: `v1.1.0` +Latest version: `v1.2.0` ```yml name: Conventional Commits @@ -24,7 +24,7 @@ jobs: - uses: actions/checkout@v3 - uses: webiny/action-conventional-commits@v1.1.0 - # optional, required for private repos - # with: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Optional, for private repositories. + allowed-commit-types: "feat,fix" # Optional, set if you want a subset of commit types to be allowed. ```