File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,24 @@ concurrency:
25
25
cancel-in-progress : true
26
26
27
27
jobs :
28
+ trace :
29
+ name : Traces
30
+ runs-on : ubuntu-latest
31
+ steps :
32
+ - name : Show
33
+ id : show
34
+ env :
35
+ SAFE_TO_TEST_LABEL : ${{ contains(github.event.pull_request.labels.*.name, 'safe-to-test') }}
36
+ SAFE_TO_TEST_LABEL_TARGET : ${{ contains(github.event.pull_request_target.labels.*.name, 'safe-to-test') }}
37
+ EVENT : ${{ github.event_name }}
38
+ run : |
39
+ echo SAFE_TO_TEST_LABEL="${SAFE_TO_TEST_LABEL}"
40
+ echo SAFE_TO_TEST_LABEL_TARGET="${SAFE_TO_TEST_LABEL_TARGET}"
41
+ echo EVENT="${EVENT}"
42
+
28
43
run-tests :
44
+ needs :
45
+ - trace
29
46
name : Run Tests
30
47
runs-on : ubuntu-latest
31
48
# Contributions do NOT run any testing by default, a label is needed to allow testing
You can’t perform that action at this time.
0 commit comments