Skip to content

Commit c5d60d2

Browse files
authored
feat: Update verify-conventional-commit action (#95)
Add cocogitto installation step to verify-conventional-commit Update the verify action to use `cog check -l` instead of the cocogitto github action for this This is because calling cog directly uses the local configuration Resolves: 11720
1 parent ce6583e commit c5d60d2

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

actions/verify-conventional-commit/action.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ description: 'Verify Conventional commit standards against latest git tag'
44
runs:
55
using: "composite"
66
steps:
7-
- name: Verify Conventional commit standards against latest git tag
8-
uses: cocogitto/cocogitto-action@ed62593c499c2d7697bb0177213946f1e2634119 #v3
7+
- name: Install Cocogitto
8+
uses: cocogitto/cocogitto-action@ed62593c499c2d7697bb0177213946f1e2634119 # v3.10
99
with:
10-
check-latest-tag-only: true
10+
check: false
11+
12+
- name: Verify Conventional commit standards against latest git tag
13+
run: cog check -l
14+
shell: bash

0 commit comments

Comments
 (0)