Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / .github / workflows / no-channel.yml
blob90c38f22c007b974a571bfea19bbf8d40fdcfcd7
1 name: "No channel PR"
3 on:
4   pull_request:
5     branches:
6       - 'nixos-**'
7       - 'nixpkgs-**'
9 permissions:
10   contents: read
12 jobs:
13   fail:
14     permissions:
15       contents: none
16     name: "This PR is is targeting a channel branch"
17     runs-on: ubuntu-latest
18     steps:
19     - run: |
20         cat <<EOF
21         The nixos-* and nixpkgs-* branches are pushed to by the channel
22         release script and should not be merged into directly.
24         Please target the equivalent release-* branch or master instead.
25         EOF
26         exit 1