From e902231873bafcc3babfaf31a538390d9d353398 Mon Sep 17 00:00:00 2001 From: "fryorcraken.eth" Date: Mon, 31 Oct 2022 11:13:09 +1100 Subject: [PATCH] chore: fix conventional commit setup --- .github/workflows/conventional-commits.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/conventional-commits.yml b/.github/workflows/conventional-commits.yml index 1130b5d60c..065b9db6a7 100644 --- a/.github/workflows/conventional-commits.yml +++ b/.github/workflows/conventional-commits.yml @@ -1,4 +1,4 @@ -name: "Semantic PR" +name: "Conventional PR" on: pull_request_target: @@ -16,9 +16,14 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: + # fix: bug fix on prod code + # feat: new feature on prod code + # test: only modify test or test utils + # doc: only modify docs/comments + # chore: anything else types: | - fix # Bug fix on prod code - feat # New feature on prod code - test # Only modify test or test utils - doc # Only modify docs/comments - chore # Anything else + fix + feat + test + doc + chore