We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae79b52 commit 2e9cb08Copy full SHA for 2e9cb08
.github/workflows/bench.yml
@@ -20,6 +20,11 @@ jobs:
20
benchstat:
21
name: Performance regression check
22
runs-on: ubuntu-latest
23
+ # Check if the event is not triggered by a fork
24
+ # peter-evans/find-comment@v1 does not work on forks.
25
+ # see https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#restrictions-on-repository-forks for details.
26
+ # Ideally we would like to still run the benchmark on forks, but we can't do that with the current setup.
27
+ if: github.event.pull_request.head.repo.full_name == github.repository
28
continue-on-error: true
29
steps:
30
- name: Set benchmark repetitions
0 commit comments