We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f4a592 commit 52fe339Copy full SHA for 52fe339
1 file changed
.github/workflows/benchmark.yml
@@ -64,7 +64,9 @@ jobs:
64
git add site/data/ site/static/logs/ 2>/dev/null || true
65
if ! git diff --cached --quiet; then
66
branch="benchmark-results/$(date +%Y%m%d-%H%M%S)"
67
- git checkout -b "$branch"
+ git fetch origin main
68
+ git checkout -b "$branch" origin/main
69
+ git checkout HEAD@{1} -- site/data/ site/static/logs/
70
git commit -m "benchmark: update results for ${{ steps.detect.outputs.list }}"
71
git push -u origin "$branch"
72
gh pr create \
0 commit comments