Skip to content

chore(deps): update dependency typescript to v5.4.5 #1785

chore(deps): update dependency typescript to v5.4.5

chore(deps): update dependency typescript to v5.4.5 #1785

Workflow file for this run

name: PR Title Check
on:
pull_request:
types: [opened, edited, synchronize, reopened]
jobs:
conventional_commits:
runs-on: ubuntu-latest
steps:
- name: check title
run: |
regex="^(feat|fix|docs|chore|style|refactor|perf|test)!?(\([^\)]+\))?:[[:space:]].+"
if [[ "${{ github.event.pull_request.title }}" =~ $regex ]]; then
echo OK
else
echo "::error::Pull Request Title Check Failed"
exit 1
fi