Benchmark comment on commit #8386
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: Benchmark comment on commit | |
on: | |
workflow_run: | |
workflows: ["Benchmark"] | |
types: | |
- completed | |
jobs: | |
macro_benchmarks_comment: | |
name: Benchmark comment on commit | |
runs-on: ubuntu-latest | |
if: > | |
github.event.workflow_run.conclusion == 'success' | |
steps: | |
- name: Download artifact with body message | |
uses: actions/download-artifact@v4 | |
with: | |
name: body | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
run-id: ${{ github.event.workflow_run.id }} | |
- name: Create Commit Comment | |
uses: peter-evans/commit-comment@v3 | |
with: | |
sha: ${{ github.event.workflow_run.head_sha }} | |
body-path: body.md |