Skip to content

Commit f3a82fa

Browse files
authored
Merge branch 'develop' into mickenordin-intro-1
2 parents 78a8a22 + 0d42375 commit f3a82fa

3 files changed

Lines changed: 151 additions & 89 deletions

File tree

.github/workflows/line-length.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Validate I-D line length
2+
on:
3+
push:
4+
branches:
5+
- "*"
6+
pull_request:
7+
workflow_dispatch:
8+
9+
jobs:
10+
validate_line_length:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
16+
- name: Validate I-D line length
17+
run: if grep -nE '.{73,}' IETF-RFC.md | grep ' '; then echo "Found lines exceeding the limit"; exit -1; else echo "Validation completed successfully"; fi
18+

.github/workflows/oas-validation.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
name: Validate OpenAPI Specification
2-
on: [push]
2+
on:
3+
push:
4+
branches:
5+
- "*"
6+
pull_request:
7+
workflow_dispatch:
38

49
jobs:
510
validate_openapi:

0 commit comments

Comments
 (0)