Skip to content

Commit 38a3704

Browse files
committed
add traces
Signed-off-by: jose.vazquez <[email protected]>
1 parent 18fd2e6 commit 38a3704

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,24 @@ concurrency:
2525
cancel-in-progress: true
2626

2727
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+
2843
run-tests:
44+
needs:
45+
- trace
2946
name: Run Tests
3047
runs-on: ubuntu-latest
3148
# Contributions do NOT run any testing by default, a label is needed to allow testing

0 commit comments

Comments
 (0)