Skip to content

Mention IANA registries for sigatures and hash algorithms. #718

Mention IANA registries for sigatures and hash algorithms.

Mention IANA registries for sigatures and hash algorithms. #718

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