Skip to content

Commit

Permalink
feat(ci): conventional commits checker action
Browse files Browse the repository at this point in the history
Closes #20.
  • Loading branch information
leha-bot committed Sep 23, 2023
1 parent 5f11231 commit 2f10056
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SPDX-FileCopyrightText: 2022 leha-bot and contributors
#
# SPDX-License-Identifier: BSL-1.0 OR BlueOak-1.0.0

name: commitlint
on:
push:
pull_request:
branches: [ master, dev ]

jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Commitlint
uses: remarkablemark/commitlint@v1

0 comments on commit 2f10056

Please sign in to comment.