| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| name: Report test results |
| on: |
| workflow_run: |
| workflows: ["Velox backend Github Runner"] |
| types: |
| - completed |
| |
| jobs: |
| test_report: |
| if: github.event.workflow_run.conclusion != 'skipped' |
| runs-on: ubuntu-latest |
| permissions: |
| checks: write |
| contents: read |
| issues: read |
| pull-requests: write |
| steps: |
| - name: Download test results to report |
| uses: dawidd6/action-download-artifact@bf251b5aa9c2f7eeb574a96ee720e24f801b7c11 # pin @v6 |
| with: |
| github_token: ${{ secrets.GITHUB_TOKEN }} |
| workflow: ${{ github.event.workflow_run.workflow_id }} |
| commit: ${{ github.event.workflow_run.head_commit.id }} |
| workflow_conclusion: completed |
| allow_forks: true |
| - name: Publish test report |
| uses: scacap/action-surefire-report@a2911bd1a4412ec18dde2d93b1758b3e56d2a880 # pin @v1.8.0 |
| with: |
| check_name: Report test results |
| github_token: ${{ secrets.GITHUB_TOKEN }} |
| report_paths: "**/surefire-reports/TEST-*.xml" |
| commit: ${{ github.event.workflow_run.head_commit.id }} |