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 f540401 commit e32e82aCopy full SHA for e32e82a
.github/workflows/dispatch-release-performance-check.yml
@@ -3,13 +3,18 @@ name: 🏁 Run Release Performance Check
3
on:
4
issue_comment:
5
types: [created]
6
+ branches:
7
+ - main
8
+ - "rc/**"
9
+ - next
10
11
jobs:
12
dispatch-matrix-check:
13
runs-on: ubuntu-latest
14
steps:
15
16
- name: Dispatch Performance Testing Job
17
+ if: ${{ github.event.issue.pull_request && contains(github.event.comment.body, '/test-performance') }}
18
uses: peter-evans/repository-dispatch@v2
19
with:
20
token: ${{ secrets.RELEASE_ENGINEERING_TOKEN }}
@@ -19,6 +24,7 @@ jobs:
24
25
21
26
- uses: actions/github-script@v6
27
22
28
23
29
script: |
30
github.rest.issues.createComment({
0 commit comments