22 lines
559 B
YAML
22 lines
559 B
YAML
|
name: "Check that maintainer list is sorted"
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- 'maintainers/maintainer-list.nix'
|
||
|
permissions:
|
||
|
contents: read
|
||
|
|
||
|
jobs:
|
||
|
nixos:
|
||
|
runs-on: ubuntu-latest
|
||
|
if: github.repository_owner == 'NixOS'
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: cachix/install-nix-action@v19
|
||
|
with:
|
||
|
# explicitly enable sandbox
|
||
|
extra_nix_config: sandbox = true
|
||
|
- name: Check that maintainer-list.nix is sorted
|
||
|
run: nix-instantiate --eval maintainers/scripts/check-maintainers-sorted.nix
|