diff options
| author | Naoto Ono <onoto1998@gmail.com> | 2025-02-10 16:55:02 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-10 16:55:02 +0900 |
| commit | cd27c580faf5b5e3ec4b4dff038bcd045ea9c282 (patch) | |
| tree | 92d788df64f872492519d9c4e989843655eaaebb | |
| parent | 135479a58d191af553e0c7b797a8388b3cc77ffa (diff) | |
Launchable: Add a workflow name as a flavor (#12720)
Adding a workflow name would be easier to understand the connection between a test session and GitHub workflow.
Notes
Notes:
Merged-By: ono-max <onoto1998@gmail.com>
| -rw-r--r-- | .github/actions/launchable/setup/action.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/actions/launchable/setup/action.yml b/.github/actions/launchable/setup/action.yml index 980ef9bd6f..e1eacc3a57 100644 --- a/.github/actions/launchable/setup/action.yml +++ b/.github/actions/launchable/setup/action.yml @@ -162,6 +162,7 @@ runs: --flavor os=${{ inputs.os }} \ --flavor test_task=${{ inputs.test-task }} \ --flavor test_opts=${test_opts} \ + --flavor workflow=${{ github.workflow }} \ --test-suite ${test_all_test_suite} \ > "${test_all_session_file}" launchable subset \ @@ -179,6 +180,7 @@ runs: --flavor os=${{ inputs.os }} \ --flavor test_task=${{ inputs.test-task }} \ --flavor test_opts=${test_opts} \ + --flavor workflow=${{ github.workflow }} \ --test-suite ${btest_test_suite} \ > "${btest_session_file}" launchable subset \ @@ -196,6 +198,7 @@ runs: --flavor os=${{ inputs.os }} \ --flavor test_task=${{ inputs.test-task }} \ --flavor test_opts=${test_opts} \ + --flavor workflow=${{ github.workflow }} \ --test-suite ${test_spec_test_suite} \ > "${test_spec_session_file}" launchable subset \ |
