b235c8591e
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
27 lines
805 B
YAML
27 lines
805 B
YAML
name: 🛡️ Check PR Title
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, edited]
|
|
|
|
jobs:
|
|
lint-pr-title:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
# Only fetch the config file from the repository
|
|
sparse-checkout-cone-mode: false
|
|
sparse-checkout: .commitlintrc.yml
|
|
|
|
- name: Install dependencies
|
|
run: npm install --global @commitlint/config-conventional commitlint
|
|
|
|
- name: Check PR title with commitlint
|
|
env:
|
|
PR_TITLE: ${{ github.event.pull_request.title }}
|
|
HELP_URL: https://github.com/wxt-dev/wxt/blob/main/CONTRIBUTING.md#conventional-pr-titles
|
|
run: echo "$PR_TITLE" | npx commitlint --help-url $HELP_URL
|