2023-02-25 20:11:14 +01:00
|
|
|
name: "Check that maintainer list is sorted"
|
|
|
|
|
|
|
|
on:
|
2023-03-18 13:16:10 +01:00
|
|
|
pull_request_target:
|
2023-02-25 20:11:14 +01:00
|
|
|
paths:
|
|
|
|
- 'maintainers/maintainer-list.nix'
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
nixos:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: github.repository_owner == 'NixOS'
|
|
|
|
steps:
|
2023-11-28 04:28:58 +01:00
|
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2023-03-18 13:16:10 +01:00
|
|
|
with:
|
|
|
|
# pull_request_target checks out the base branch by default
|
|
|
|
ref: refs/pull/${{ github.event.pull_request.number }}/merge
|
2023-12-05 01:52:38 +01:00
|
|
|
- uses: cachix/install-nix-action@7ac1ec25491415c381d9b62f0657c7a028df52a7 # v24
|
2023-02-25 20:11:14 +01:00
|
|
|
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
|