@@ -32,15 +32,18 @@ jobs:
3232 # Set the parameters to be used in the response
3333 repo=${{ github.event.client_payload.repo }}
3434 owner=${{ github.event.client_payload.owner }}
35+ ref=${{ github.event.client_payload.ref }}
36+ sha=${{ github.event.client_payload.sha }}
37+ number=${{ github.event.client_payload.number }}
3538 repo_name=${repo#"$owner"}
3639 repo_name=${repo_name#"/"}
37- echo "client_repo="${{ github.event.client_payload. repo }} >> $GITHUB_ENV
40+ echo "client_repo="$repo >> $GITHUB_ENV
3841 echo "client_repo_name="$repo_name >> $GITHUB_ENV
39- echo "client_owner="${{ github.event.client_payload. owner }} >> $GITHUB_ENV
40- echo "client_ref="${{ github.event.client_payload. ref }} >> $GITHUB_ENV
41- echo "client_sha="${{ github.event.client_payload. sha }} >> $GITHUB_ENV
42- echo "client_number="${{ github.event.client_payload. number }} >> $GITHUB_ENV
43-
42+ echo "client_owner="$owner >> $GITHUB_ENV
43+ echo "client_ref="$ref >> $GITHUB_ENV
44+ echo "client_sha="$sha >> $GITHUB_ENV
45+ echo "client_number="$number >> $GITHUB_ENV
46+
4447 # Checkout the sha from the specified repository.
4548 # Only run the tests matching the specified repository.
4649 if [[ $repo =~ 'omero-ms-zarr' ]]; then
6871 - name : Run pytest
6972 shell : bash -l {0}
7073 run : pytest -vxk "not omero"
74+ # yamllint disable rule:line-length
7175 - name : Notify job status
7276 if : always() && github.event.action == 'run_test_suite'
7377 uses : actions/github-script@v3
0 commit comments