Skip to content

ci: add snyk license scanning to PR CI workflow #3662

ci: add snyk license scanning to PR CI workflow

ci: add snyk license scanning to PR CI workflow #3662

name: "Lint PR title"
on:
pull_request_target:
types:
- opened
- edited
- synchronize
branches:
- 'main'
- 'develop'
permissions:
contents: read
jobs:
lint:
if: ${{ github.head_ref != 'develop' }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- 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