Skip to content

Add checks for changelog #1

Add checks for changelog

Add checks for changelog #1

Workflow file for this run

---
name: Check changelog format
on:
pull_request:
paths:
- 'CHANGELOG.md'
jobs:
check-changelog:
runs-on: ubuntu-latest
steps:
- name: No lines must exceed 100 characters
run: |
awk 'length($0) > 100 { print NR-1 ": Line exceeds 100 chars: " $0; found=1 } END { if(found) exit 1 }' CHANGELOG.md