Skip to content

feat: Add linting checks to CI/CD and fix code style issues #3

feat: Add linting checks to CI/CD and fix code style issues

feat: Add linting checks to CI/CD and fix code style issues #3

Workflow file for this run

name: 'Conventional PR Title'
on:
pull_request:
types: [opened, edited, synchronize, reopened]
concurrency:
group: pr-title-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
check-title:
permissions:
pull-requests: read
runs-on: ubuntu-latest
steps:
- name: Check pull request title for Conventional Commit
uses: amannn/action-semantic-pull-request@v6
with:
types: |
feat
fix
docs
style
refactor
perf
test
build
ci
chore
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}