From 4d59bb6c5797ffb177f40302dbd1a1c80a8239e3 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Mon, 28 Apr 2025 13:44:08 -0400 Subject: [PATCH] .github: run verify-qa from base branch If the PR does not have the script, perhaps it does not run? Signed-off-by: Patrick Donnelly --- .github/workflows/qa-symlink.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/qa-symlink.yml b/.github/workflows/qa-symlink.yml index 1777941938321..d67235a7f5a03 100644 --- a/.github/workflows/qa-symlink.yml +++ b/.github/workflows/qa-symlink.yml @@ -13,11 +13,17 @@ jobs: name: "Check for missing .qa links" runs-on: ubuntu-latest steps: - - name: checkout ceph.git + - name: checkout PR HEAD uses: actions/checkout@v4 with: - path: ceph + path: head + + - name: checkout base + uses: actions/checkout@v4 + with: + path: base + ref: ${{ github.base_ref }} - name: verify .qa links - run: ./src/script/verify-qa - working-directory: ceph + run: ../base/src/script/verify-qa + working-directory: head/ -- 2.39.5