nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1name: "Check cherry-picks"
2
3on:
4 pull_request:
5 paths:
6 - .github/workflows/check-cherry-picks.yml
7 pull_request_target:
8 branches:
9 - 'release-**'
10 - 'staging-**'
11 - '!staging-next'
12
13permissions: {}
14
15jobs:
16 check:
17 name: cherry-pick-check
18 runs-on: ubuntu-24.04-arm
19 steps:
20 - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21 with:
22 fetch-depth: 0
23 filter: blob:none
24
25 - name: Check cherry-picks
26 env:
27 BASE_SHA: ${{ github.event.pull_request.base.sha }}
28 HEAD_SHA: ${{ github.event.pull_request.head.sha }}
29 run: |
30 ./maintainers/scripts/check-cherry-picks.sh "$BASE_SHA" "$HEAD_SHA"