lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 24 lines 721 B view raw
1name: "Check that maintainer list is sorted" 2 3on: 4 pull_request_target: 5 paths: 6 - 'maintainers/maintainer-list.nix' 7permissions: 8 contents: read 9 10jobs: 11 nixos: 12 runs-on: ubuntu-latest 13 if: github.repository_owner == 'NixOS' 14 steps: 15 - uses: actions/checkout@v4 16 with: 17 # pull_request_target checks out the base branch by default 18 ref: refs/pull/${{ github.event.pull_request.number }}/merge 19 - uses: cachix/install-nix-action@v23 20 with: 21 # explicitly enable sandbox 22 extra_nix_config: sandbox = true 23 - name: Check that maintainer-list.nix is sorted 24 run: nix-instantiate --eval maintainers/scripts/check-maintainers-sorted.nix