Skip to content

feat: rename CDN index file to index.yaml (from manifest.yaml) #56

feat: rename CDN index file to index.yaml (from manifest.yaml)

feat: rename CDN index file to index.yaml (from manifest.yaml) #56

Workflow file for this run

# Copyright (c) 2025 Columnar Technologies. All rights reserved.
name: Dev PR
on:
pull_request_target:
types: [opened, edited, synchronize, ready_for_review, review_requested]
permissions:
contents: read
pull-requests: read
jobs:
check-pr-title:
name: Check PR Title
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install commitlint
run: |
npm install @commitlint/cli @commitlint/config-conventional
- name: Check PR title follows conventional commits spec
run: |
echo "${{ github.event.pull_request.title }}" | npx commitlint --extends @commitlint/config-conventional