Skip to content

ci: Added workflow for linting commit messages on pull request #1

ci: Added workflow for linting commit messages on pull request

ci: Added workflow for linting commit messages on pull request #1

Workflow file for this run

# Copyright (c) 2023 MDSANIMA
# This file is for linting commit messages with commitlint GitHub action workflow.
# Documentation: https://github.com/wagoid/commitlint-github-action#readme
name: Lint Commit Messages
on: [pull_request]
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v5
with:
configFile: "./.commitlintrc"