Skip to content

ci: standardize commit messages #1

ci: standardize commit messages

ci: standardize commit messages #1

Workflow file for this run

---
name: PR Title
on:
pull_request:
types:
- opened
- edited
- synchronize
permissions:
contents: read
jobs:
pr-title:
name: PR title format
if: github.actor != 'dependabot[bot]' && github.actor != 'github-actions[bot]'
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Check PR title
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: node scripts/check-commit-message.mjs --message "$PR_TITLE"