[Backport release-24.11] kanidm: discern normal build from provisioning build and fix 1_3 patches #2142
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Check cherry-picks" | |
on: | |
pull_request_target: | |
branches: | |
- 'release-**' | |
- 'staging-**' | |
- '!staging-next' | |
permissions: {} | |
jobs: | |
check: | |
name: cherry-pick-check | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'NixOS' | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
filter: blob:none | |
- name: Check cherry-picks | |
env: | |
BASE_SHA: ${{ github.event.pull_request.base.sha }} | |
HEAD_SHA: ${{ github.event.pull_request.head.sha }} | |
run: | | |
./maintainers/scripts/check-cherry-picks.sh "$BASE_SHA" "$HEAD_SHA" |