Bumps [LouisBrunner/checks-action](https://github.com/LouisBrunner/checks-action) from 1.3.1 to 1.5.0. - [Release notes](https://github.com/LouisBrunner/checks-action/releases) - [Commits](https://github.com/LouisBrunner/checks-action/compare/v1.3.1...v1.5.0) --- updated-dependencies: - dependency-name: LouisBrunner/checks-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
34 lines
912 B
YAML
34 lines
912 B
YAML
name: Upload Reports
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Loadtest"]
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
upload:
|
|
name: Loadtest
|
|
permissions:
|
|
checks: write
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
steps:
|
|
- name: Download from Artifacts
|
|
uses: dawidd6/action-download-artifact@v2
|
|
with:
|
|
workflow: ${{ github.event.workflow.name }}
|
|
run_id: ${{github.event.workflow_run.id }}
|
|
name: loadtest.md
|
|
path: artifacts
|
|
- name: Upload to GitHub Checks
|
|
uses: LouisBrunner/checks-action@v1.5.0
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
sha: ${{ github.event.workflow_run.head_sha }}
|
|
name: Loadtest Results
|
|
conclusion: neutral
|
|
output: |
|
|
{"summary":""}
|
|
output_text_description_file: artifacts/loadtest.md
|