Skip to content

Commit

Permalink
Merge pull request #2 from neuralmagic/benchmark-results-workflow
Browse files Browse the repository at this point in the history
Add benchmark processing workflow stub
  • Loading branch information
dbarbuzzi authored Jul 22, 2024
2 parents d90436b + 3ae7cf6 commit 98ef195
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/process-benchmark-results.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: process benchmark results

on:
repository_dispatch:
types: [benchmark_results]

jobs:
PROCESS_RESULTS:
runs-on: ubuntu-latest
steps:
- name: parse request
shell: bash
run: |
echo "asset: ${{ github.event.client_payload.asset }}"
echo "event: ${{ github.event }}"
echo "client_payload: ${{ github.event.client_payload }}"

0 comments on commit 98ef195

Please sign in to comment.