Skip to content

feat: enhance whiteboard and dock #85

feat: enhance whiteboard and dock

feat: enhance whiteboard and dock #85

Workflow file for this run

name: PR Conventions
on:
pull_request:
branches: [main]
types: [opened, edited, synchronize, reopened]
concurrency:
group: pr-conventions-${{ github.ref }}
cancel-in-progress: true
jobs:
pr-title:
name: Validate PR Title
runs-on: ubuntu-latest
steps:
- name: Check PR title follows Conventional Commits
uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Types permitidos (alineados con release-please)
types: |
feat
fix
docs
style
refactor
perf
test
build
ci
chore
revert
requireScope: false
commits:
name: Validate Commit Messages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install commitlint
run: npm install --save-dev @commitlint/cli @commitlint/config-conventional
- name: Validate commits in PR
run: |
npx commitlint \
--from ${{ github.event.pull_request.base.sha }} \
--to ${{ github.event.pull_request.head.sha }} \
--verbose