4985724c82
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 15 to 16. - [Release notes](https://github.com/cachix/install-nix-action/releases) - [Commits](https://github.com/cachix/install-nix-action/compare/v15...v16) --- updated-dependencies: - dependency-name: cachix/install-nix-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
649 B
YAML
27 lines
649 B
YAML
name: NixOS manual checks
|
|
|
|
permissions: read-all
|
|
|
|
on:
|
|
pull_request_target:
|
|
branches-ignore:
|
|
- 'release-**'
|
|
paths:
|
|
- 'nixos/**/*.xml'
|
|
- 'nixos/**/*.md'
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository_owner == 'NixOS'
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
# pull_request_target checks out the base branch by default
|
|
ref: refs/pull/${{ github.event.pull_request.number }}/merge
|
|
- uses: cachix/install-nix-action@v16
|
|
- name: Check DocBook files generated from Markdown are consistent
|
|
run: |
|
|
nixos/doc/manual/md-to-db.sh
|
|
git diff --exit-code
|