core(ci): added run-name for hardware tests workflow [no changelog]
What changed, and why it matters
This commit only adds a display name (run-name) to a GitHub Actions workflow that runs hardware tests. It does not change any code that runs on the Trezor device or any test logic. There is no security relevance.
No action needed; this is a benign CI metadata change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff adds a single run-name line to .github/workflows/core-hw.yml so that scheduled/ manually triggered workflow runs show a descriptive title based on the models_json input. It is a cosmetic CI-only change with no functional, cryptographic, or firmware impact.
Changed components
.github/workflows/core-hw.ymlInspect captured patch +1 / −0
diff --git a/.github/workflows/core-hw.yml b/.github/workflows/core-hw.yml
index 897af98a..1de73df0 100644
--- a/.github/workflows/core-hw.yml
+++ b/.github/workflows/core-hw.yml
@@ -1,4 +1,5 @@
name: Hardware tests
+run-name: Hardware tests on ${{ inputs.models_json != '' && join(fromJSON(inputs.models_json), ', ') || 'all models' }}
on:
schedule:
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.