Skip to content

Apply suggestions from code review #795

Apply suggestions from code review

Apply suggestions from code review #795

Workflow file for this run

name: Validate I-Ds line length
on:
push:
branches:
- "*"
pull_request:
workflow_dispatch:
jobs:
validate_line_length:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Validate line length
run: if grep -nhE '.{73,}' IETF-*.md | grep ' '; then echo "Found lines exceeding the limit"; exit -1; else echo "Validation completed successfully"; fi