Skip to content

Commit 6e93ef3

Browse files
committed
add traces
1 parent 18fd2e6 commit 6e93ef3

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/test.yml

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

2727
jobs:
28+
trace:
29+
name: Traces
30+
runs-on: ubuntu-latest
31+
env:
32+
SAFE_TO_TEST_LABEL: ${{ contains(github.event.pull_request.labels.*.name, 'safe-to-test') }}
33+
SAFE_TO_TEST_LABEL_TARGET: ${{ contains(github.event.pull_request_target.labels.*.name, 'safe-to-test') }}
34+
EVENT: ${{ github.event_name }}
35+
run: |
36+
echo SAFE_TO_TEST_LABEL="${SAFE_TO_TEST_LABEL}"
37+
echo SAFE_TO_TEST_LABEL_TARGET="${SAFE_TO_TEST_LABEL_TARGET}"
38+
echo EVENT="${EVENT}"
39+
2840
run-tests:
41+
needs:
42+
- trace
2943
name: Run Tests
3044
runs-on: ubuntu-latest
3145
# Contributions do NOT run any testing by default, a label is needed to allow testing

0 commit comments

Comments
 (0)