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 a0d13cf commit 2272d02Copy full SHA for 2272d02
.github/workflows/benchmark.yml
@@ -3,6 +3,7 @@ name: Benchmark Main
3
on:
4
push:
5
branches: [ main ]
6
+ pull_request: # TEMPORARY FOR TESTING, WILL REMOVE BEFORE MARKING READY TO REVIEW
7
workflow_dispatch:
8
9
permissions:
@@ -41,7 +42,13 @@ jobs:
41
42
run: |
43
apt-get update
44
apt-get install -y git
-
45
+
46
+ - name: Configure Git safe directory
47
+ run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
48
49
+ - name: Use CLA approved github bot
50
+ run: .github/scripts/use-cla-approved-github-bot.sh
51
52
- name: Store benchmark results
53
uses: benchmark-action/github-action-benchmark@d48d326b4ca9ba73ca0cd0d59f108f9e02a381c7 # v1.20.4
54
with:
0 commit comments