Skip to content

ci: switch to release please and deprecate github pat #2

ci: switch to release please and deprecate github pat

ci: switch to release please and deprecate github pat #2

name: Check PR Title
on:
pull_request:
branches: [ master ]
types: [opened, edited, synchronize, reopened]
jobs:
commitlint:
name: Check PR title
runs-on: ubuntu-latest
steps:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20.x'
- name: Setup
run: |
npm install -g @commitlint/cli @commitlint/config-conventional
echo "module.exports = {extends: ['@commitlint/config-conventional']}" > commitlint.config.js
- name: Verify PR title is in the correct format
env:
TITLE: ${{ github.event.pull_request.title }}
run: |
echo $TITLE | npx commitlint -V