Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-restricted-files.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ jobs:

echo This PR contains changes to files that should not be changed:
echo
git diff --compact-summary origin/${{ github.event.pull_request.base.ref }} origin/${{ github.event.pull_request.head.ref }} -- versions/[0-9].[0-9].[0-9].md
git diff --compact-summary origin/${{ github.event.pull_request.base.ref }} -- versions/[0-9].[0-9].[0-9].md

exit 1
18 changes: 11 additions & 7 deletions .github/workflows/validate-markdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,24 @@ on:
workflow_dispatch: {}

jobs:
mdv:
lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5 # checkout repo content
with:
fetch-depth: 0
# - name: use the javascript environment from main
# run: |
# git checkout remotes/origin/main -- package.json package-lock.json .markdownlint.yaml

- uses: actions/setup-node@v6 # setup Node.js
with:
node-version: "22.x"
- name: Validate markdown
run: npx --yes mdv versions/*.md

- name: Lint markdown
run: npx --yes markdownlint-cli --config .markdownlint.yaml versions/*.md
run: npx --yes markdownlint-cli2 --config .markdownlint.yaml npx markdownlint-cli2 *.md schemas/**/*.md versions/*.md

- name: Check links in markdown files
uses: umbrelladocs/action-linkspector@v1
with:
reporter: github-check
fail_level: any
filter_mode: file
3 changes: 3 additions & 0 deletions .linkspector.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dirs:
- ./
useGitIgnore: true
5 changes: 3 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@ Pull requests must come from a fork; create a fresh branch on your fork based on

Overview of branches:

The `main` branch holds
The `main` branch holds

- published versions of the specification, named `versions/X.Y.Z.md`,
- work-in-progress versions of the specification, named `versions/X.Y.Z-dev.md`,
- sources for published schema versions in `schemas/vX.Y` folders and their tests in `tests/vX.Y` folders,
- sources for published schema versions in `schemas/vX.Y` folders and their tests in `tests/vX.Y` folders,
- sources for work-in-progress schema versions in `schemas/vX.Y-dev` folders and their tests in `tests/vX.Y-dev` folders,
- utility scripts and supporting documentation.

Expand Down
16 changes: 8 additions & 8 deletions EDITORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

## Active

* Lorna Mitchell [@lornajane](https://github.com/lornajane)
* Mike Kistler [@mikekistler](https://github.com/mikekistler)
* Vincent Biret [@baywet](https://github.com/baywet)
- Lorna Mitchell [@lornajane](https://github.com/lornajane)
- Mike Kistler [@mikekistler](https://github.com/mikekistler)
- Vincent Biret [@baywet](https://github.com/baywet)

## Emeritus

* Darrel Miller [@darrelmiller](https://github.com/darrelmiller)
* Greg Dennis [@gregsdennis](https://github.com/gregsdennis)
* Kevin Swiber [@kevinswiber](https://github.com/kevinswiber)
* Mike Ralphson [@MikeRalphson](https://github.com/MikeRalphson)
* Ron Ratovsky [@webron](https://github.com/webron)
- Darrel Miller [@darrelmiller](https://github.com/darrelmiller)
- Greg Dennis [@gregsdennis](https://github.com/gregsdennis)
- Kevin Swiber [@kevinswiber](https://github.com/kevinswiber)
- Mike Ralphson [@MikeRalphson](https://github.com/MikeRalphson)
- Ron Ratovsky [@webron](https://github.com/webron)
Loading