Skip to content

chore(backend)(deps): bump yjs from 13.6.31 to 13.6.32 in /backend #112

chore(backend)(deps): bump yjs from 13.6.31 to 13.6.32 in /backend

chore(backend)(deps): bump yjs from 13.6.31 to 13.6.32 in /backend #112

Workflow file for this run

name: Lint Commit Messages & PR Titles
on:
pull_request:
types: [opened, edited, synchronize, reopened]
push:
branches: [main]
jobs:
commitlint:
name: Validate Conventional Commit & PR Title Format
runs-on: ubuntu-latest
steps:
- name: Checkout Codebase
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 20
- name: Validate PR Title Format
if: github.event_name == 'pull_request'
uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
types: |
feat
fix
docs
style
refactor
perf
test
build
ci
chore
revert
requireScope: false
- name: Validate Git Commit Messages
if: github.event_name == 'push'
run: |
npx @commitlint/cli --from ${{ github.event.before }} --to ${{ github.sha }} --verbose