We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bac784b commit 57487aeCopy full SHA for 57487ae
2 files changed
.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