Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ name: Benchmark

on:
issue_comment:
types: [created]
types: created

jobs:
benchmark_base:
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/run-benchmark')
# On pull requests and if the comment starts with `/run-benchmark`
if: github.event.issue.pull_request != null && startsWith(github.event.comment.body, '/run-benchmark')
runs-on: self-hosted

steps:
Expand Down