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"]' +