From 07b17c8e0e5bb7f41ae326abba360d9ed0e9fa01 Mon Sep 17 00:00:00 2001 From: Matt Weber <1062734+mweberxyz@users.noreply.github.com> Date: Sun, 25 Feb 2024 14:21:57 -0500 Subject: [PATCH] chore: add benchmark pr workflow --- .github/workflows/benchmark.yml | 15 +++++++++++++++ 1 file changed, 15 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 0000000..5899fd9 --- /dev/null +++ b/.github/workflows/benchmark.yml @@ -0,0 +1,15 @@ +name: Benchmark PR + +on: + pull_request_target: + types: + - labeled + +jobs: + benchmark: + if: ${{ github.event.label.name == 'benchmark' }} + uses: mweberxyz/fastify-workflows/.github/workflows/benchmark-pr.yml@feature/benchmark-pr + with: + benchmarks-dir: 'benchmark' + files-to-ignore: '["setup.js"]' +