fix(ssi): run ssi in current proposal branch#9223
Conversation
Overall package sizeSelf size: 6.55 MB Dependency sizes| name | version | self size | total size | |------|---------|-----------|------------| | import-in-the-middle | 3.3.0 | 117.14 kB | 432.47 kB | | opentracing | 0.14.7 | 194.81 kB | 194.81 kB | | dc-polyfill | 0.1.11 | 25.74 kB | 25.74 kB |🤖 This report was automatically generated by heaviest-objects-in-the-universe |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #9223 +/- ##
==========================================
+ Coverage 93.59% 93.61% +0.01%
==========================================
Files 900 900
Lines 52679 52679
Branches 12405 12405
==========================================
+ Hits 49306 49316 +10
+ Misses 3373 3363 -10 Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
🎉 All green!🧪 All tests passed 🎯 Code Coverage (details) 🔗 Commit SHA: 15fe02a | Docs | Datadog PR Page | Give us feedback! |
BenchmarksBenchmark execution time: 2026-07-06 18:08:21 Comparing candidate commit 15fe02a in PR branch Found 0 performance improvements and 0 performance regressions! Performance is the same for 2253 metrics, 33 unstable metrics.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 15fe02aa10
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
What does this PR do?
This PR fixes the SSI test guard. Previously, SSI tests only ran on master because CI_MERGE_REQUEST_LABELS and CI_MERGE_REQUEST_SOURCE_BRANCH_NAME are only available during GitLab merge requests. Since this is a GitHub merge, those variables are not available, causing the condition to always evaluate to false.
Because labels are not currently accessible by gitlab in GitHub merges, running SSI tests using the run-ssi-tests label is not supported at the moment.
Motivation
Additional Notes