Skip to content

chore(deps-dev): Bump webpack from 5.91.0 to 5.94.0 in /frontend #12

chore(deps-dev): Bump webpack from 5.91.0 to 5.94.0 in /frontend

chore(deps-dev): Bump webpack from 5.91.0 to 5.94.0 in /frontend #12

name: "Lint PR title"
on:
pull_request_target:
types:
- opened
- edited
- synchronize
branches:
- 'main'
jobs:
lint:
if: ${{ github.head_ref != 'main' }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm install @commitlint/cli @commitlint/config-conventional
- name: Validate PR title
run: |
PR_TITLE=$(jq -r '.pull_request.title' "$GITHUB_EVENT_PATH")
echo "$PR_TITLE" | npx commitlint --config commitlint.config.js