We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 45b4f7d + 57487ae commit 8b665efCopy full SHA for 8b665ef
.github/workflows/commit_performance_result.yml
@@ -33,6 +33,7 @@ jobs:
33
echo "Performance results already present"
34
exit 0
35
fi
36
+ git pull
37
git commit -m "Add performance results for commit ${{ github.event.inputs.sha }}"
38
git push
39
.github/workflows/publish_commit.yml
@@ -1,8 +1,12 @@
1
name: Publish Commit SHA for performance testing
2
on:
3
- push:
+ pull_request:
4
+ types:
5
+ - closed
6
branches:
7
- master
8
+ paths-ignore:
9
+ - 'performance-results/**'
10
permissions:
11
id-token: write # This is required for requesting the JWT
12
contents: read # This is required for actions/checkout
0 commit comments