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 18fd2e6 commit 6e93ef3Copy full SHA for 6e93ef3
.github/workflows/test.yml
@@ -25,7 +25,21 @@ concurrency:
25
cancel-in-progress: true
26
27
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
+
40
run-tests:
41
+ needs:
42
+ - trace
43
name: Run Tests
44
runs-on: ubuntu-latest
45
# Contributions do NOT run any testing by default, a label is needed to allow testing
0 commit comments