Skip to content

Commit

Permalink
workflows/perf: add new workflow to be triggered by a label
Browse files Browse the repository at this point in the history
  • Loading branch information
isacikgoz committed Dec 18, 2024
1 parent fb57c42 commit be1b60c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/perf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: run-performance-tests

on:
pull_request:
types: [ labeled ]

jobs:
test:
runs-on: ubuntu-22.04
if: ${{ github.event.label.name == 'Run Performance Tests' }}
steps:
- name: ci/checkout-repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: ci/test
uses: ./.github/actions/test

0 comments on commit be1b60c

Please sign in to comment.