docs: add WSA KPM release gates #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Documentation checks | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'README.md' | |
| - 'CHANGELOG.md' | |
| - 'docs/**' | |
| - 'scripts/wsa-kpm-doc-consistency.sh' | |
| - '.github/workflows/docs.yml' | |
| - 'KernelSU/docs/KPM_X86_64_ABI.md' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'README.md' | |
| - 'CHANGELOG.md' | |
| - 'docs/**' | |
| - 'scripts/wsa-kpm-doc-consistency.sh' | |
| - '.github/workflows/docs.yml' | |
| - 'KernelSU/docs/KPM_X86_64_ABI.md' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| kpm-docs: | |
| name: KPM ABI documentation consistency | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 1 | |
| - name: Check documentation consistency | |
| run: bash scripts/wsa-kpm-doc-consistency.sh |