From adb0ec8e4423fd04e2b0a0d27fdd9f8f806cb975 Mon Sep 17 00:00:00 2001 From: Georgiy Komarov Date: Fri, 30 Aug 2024 01:34:20 +0000 Subject: [PATCH] feat(ci): Basic gh-action to run and publish benchmarks --- .github/workflows/benchmark.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/benchmark.yml diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml new file mode 100644 index 00000000..f79f75c1 --- /dev/null +++ b/.github/workflows/benchmark.yml @@ -0,0 +1,14 @@ +name: Comment Trigger Test + +on: + issue_comment: + types: [created, edited] + +jobs: + comment-check: + runs-on: ubuntu-latest + steps: + - name: Check Comment + run: | + echo "Comment ${{ github.event.comment.body }}" +