If the PR does not have the script, perhaps it does not run?
Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
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/