From: Patrick Donnelly Date: Mon, 28 Apr 2025 17:44:08 +0000 (-0400) Subject: .github: run verify-qa from base branch X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=4d59bb6c5797ffb177f40302dbd1a1c80a8239e3;p=ceph.git .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 --- 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/