]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
.github: run verify-qa from base branch 63011/head
authorPatrick Donnelly <pdonnell@ibm.com>
Mon, 28 Apr 2025 17:44:08 +0000 (13:44 -0400)
committerPatrick Donnelly <pdonnell@ibm.com>
Mon, 28 Apr 2025 17:44:08 +0000 (13:44 -0400)
If the PR does not have the script, perhaps it does not run?

Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
.github/workflows/qa-symlink.yml

index 17779419383211057ecbf3d0cf3c280c65dbde0a..d67235a7f5a03254460e8f414913ca4bced896ad 100644 (file)
@@ -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/