chore: Integrate committed for checking conventional commits (#77)

Closes #50
This commit is contained in:
Orhun Parmaksız
2023-02-25 15:36:49 +02:00
committed by GitHub
parent 1c0ed3268b
commit 052ae53b6e
2 changed files with 33 additions and 0 deletions

View File

@@ -44,3 +44,20 @@ jobs:
run: cargo make ci
env:
RUST_BACKTRACE: full
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
if: github.event_name != 'pull_request'
uses: actions/checkout@v3
- name: Checkout
if: github.event_name == 'pull_request'
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: "Check conventional commits"
uses: crate-ci/committed@master
with:
args: "-vv"
commits: "HEAD"