mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-23 05:33:08 +03:00
29 lines
677 B
YAML
29 lines
677 B
YAML
name: PR Title Lint
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- synchronize
|
|
branches:
|
|
- canary
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check-pull-request-title:
|
|
name: Check pull request title
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
cache: 'yarn'
|
|
node-version-file: '.nvmrc'
|
|
- name: Install dependencies
|
|
run: yarn workspaces focus @affine/commitlint-config
|
|
- run: echo "${{ github.event.pull_request.title }}" | yarn workspace @affine/commitlint-config commitlint -g ./.commitlintrc.json
|