mirror of
https://github.com/langgenius/dify.git
synced 2026-05-26 13:00:51 -04:00
50 lines
1.4 KiB
YAML
50 lines
1.4 KiB
YAML
name: Hotfix Cherry-Pick Provenance
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- 'hotfix/**'
|
|
- 'lts/**'
|
|
types:
|
|
- opened
|
|
- edited
|
|
- reopened
|
|
- ready_for_review
|
|
- synchronize
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: hotfix-cherry-pick-${{ github.event.pull_request.number || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
check-cherry-pick-provenance:
|
|
name: Require cherry-pick provenance
|
|
runs-on: depot-ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Fetch PR base, PR head, and main
|
|
env:
|
|
BASE_REF: ${{ github.base_ref }}
|
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
|
run: |
|
|
git fetch --no-tags --prune origin \
|
|
"+refs/heads/main:refs/remotes/origin/main" \
|
|
"+refs/heads/${BASE_REF}:refs/remotes/origin/${BASE_REF}" \
|
|
"+refs/pull/${PR_NUMBER}/head:refs/remotes/pull/${PR_NUMBER}/head"
|
|
|
|
- name: Load checker from main
|
|
run: git show origin/main:.github/scripts/check-hotfix-cherry-picks.sh > "$RUNNER_TEMP/check-hotfix-cherry-picks.sh"
|
|
|
|
- name: Check PR commits
|
|
env:
|
|
BASE_SHA: ${{ github.event.pull_request.base.sha }}
|
|
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
|
|
MAIN_REF: origin/main
|
|
run: bash "$RUNNER_TEMP/check-hotfix-cherry-picks.sh"
|