From bf03d44c2888328643021e1f0ec87b08ede659e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCrg=C3=BCn=20Day=C4=B1o=C4=9Flu?= Date: Sat, 8 Jun 2024 17:13:47 +0300 Subject: [PATCH] remove bench workflow --- .github/workflows/bench.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/bench.yml diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml deleted file mode 100644 index d4f430d..0000000 --- a/.github/workflows/bench.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Benchmark PR - -on: - pull_request_target: - types: - - labeled - -jobs: - benchmark: - if: ${{ github.event.label.name == 'benchmark' }} - uses: fastify/workflows/.github/workflows/plugins-benchmark-pr.yml@main - with: - npm-script: bench - - remove-label: - if: "always()" - needs: benchmark - runs-on: ubuntu-latest - steps: - - name: Remove benchmark label - uses: octokit/request-action@v2.x - id: remove-label - with: - route: DELETE /repos/{repo}/issues/{issue_number}/labels/{name} - repo: ${{ github.event.pull_request.base.repo.full_name }} - issue_number: ${{ github.event.pull_request.number }} - name: benchmark - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}