Skip to content

chore: Add a readme

chore: Add a readme #2

Workflow file for this run

name: commit-msg
on:
pull_request:
types:
- edited
- opened
- reopened
- synchronize
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint pull request title
uses: extenda/actions/commitlint@v0
with:
message: ${{ github.event.pull_request.title }}
- name: Lint commit messages
if: always()
uses: extenda/actions/commitlint@v0
with:
relaxed: ${{ contains(job.status, 'success') }}