Skip to content

[Issue #1820] Syncs ADRs with wiki #4

[Issue #1820] Syncs ADRs with wiki

[Issue #1820] Syncs ADRs with wiki #4

Workflow file for this run

# Checks that all of the markdown files in /documentation/wiki/
# have been added to documenation/wiki/SUMMARY.md
name: CI - Check wiki links
on:
pull_request:
paths:
- documentation/wiki/**
- .github/workflows/ci-wiki-links.yml
- .github/linters/scripts/check-wiki-pages-linked-to-summary.sh
defaults:
run:
working-directory: ./.github/linters # ensures that this job runs from the ./linters sub-directory
jobs:
check-wiki-links:
name: Check wiki links in SUMMARY.md
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ secrets.GH_TOKEN_PROJECT_ACCESS }}
steps:
- uses: actions/checkout@v3
- name: Check all wiki files are linked in SUMMARY.md
run: ./scripts/check-wiki-pages-linked-to-summary.sh