Post Unit Tests #5062
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Post Unit Tests | |
on: | |
workflow_run: | |
workflows: [Unit tests] | |
types: | |
- completed | |
jobs: | |
post-unitests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
# This posts the status to the PR/commit | |
- uses: haya14busa/action-workflow_run-status@v1 | |
- name: Download benchmarks | |
uses: dawidd6/action-download-artifact@v6 | |
with: | |
# This is the workflow that triggered this run | |
workflow: ${{ github.event.workflow.id }} | |
workflow_conclusion: success | |
name: delta-action-benchmarks | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get PR number | |
if: github.event.workflow_run.event == 'pull_request' | |
id: pr_number | |
run: echo "pr_number=$(cat pr_number)" >> $GITHUB_OUTPUT | |
- name: Post deltas to GitHub | |
uses: netlify/delta-action@v4 | |
with: | |
title: "⏱️ Benchmark results" | |
style: "text" | |
pr_number: ${{ steps.pr_number.outputs.pr_number }} |