diff --git a/.github/workflows/ci-unit-tests-go-tip.yml b/.github/workflows/ci-unit-tests-go-tip.yml index 4e0e2ece919..74ad202950b 100644 --- a/.github/workflows/ci-unit-tests-go-tip.yml +++ b/.github/workflows/ci-unit-tests-go-tip.yml @@ -44,5 +44,22 @@ jobs: check_run: false comment_mode: off + - name: Upload Test Results + if: always() + uses: actions/upload-artifact@v3 + with: + name: Test Results + path: junit-report.xml + - name: Lint run: echo skip linting on Go tip + + event-file: + name: "Event File" + runs-on: ubuntu-latest + steps: + - name: Upload + uses: actions/upload-artifact@v3 + with: + name: Event File + path: ${{ github.event_path }} diff --git a/.github/workflows/ci-unit-tests-report.yml b/.github/workflows/ci-unit-tests-report.yml index a25f62262b0..df37488ab85 100644 --- a/.github/workflows/ci-unit-tests-report.yml +++ b/.github/workflows/ci-unit-tests-report.yml @@ -2,13 +2,13 @@ name: Unit Test Results on: workflow_run: - workflows: ["Unit Tests"] + workflows: ["Unit Tests", "Unit Tests on Go Tip"] types: - completed jobs: unit-test-results: - name: Unit Test Results + name: ${{ github.event.workflow_run.name }} runs-on: ubuntu-latest if: github.event.workflow_run.conclusion != 'skipped'