File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
test :
10
10
name : Execute benchmark tests
11
- if : github.event_name == 'schedule' || (github.event_name == 'pull_request_review' && (github.event.pull_request_review.state == 'approved' || contains(github.event.pull_request_review.body, 'please run benchmark'))
11
+ if : github.event_name == 'schedule' || (github.event_name == 'pull_request_review')
12
+ # if: github.event_name == 'schedule' || (github.event_name == 'pull_request_review' && (github.event.pull_request_review.state == 'approved' || contains(github.event.pull_request_review.body, 'please run benchmark')))
12
13
13
14
runs-on : ubuntu-20.04
14
15
33
34
uses : actions/github-script@v4
34
35
with :
35
36
script : |
37
+ console.log(context)
36
38
const child_process = require("child_process");
37
39
const pull_request = context.payload.pull_request;
38
40
You can’t perform that action at this time.
0 commit comments