-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
digraph: Support JSON reference expansion #778
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #778 +/- ##
==========================================
+ Coverage 55.19% 55.70% +0.50%
==========================================
Files 71 73 +2
Lines 7712 7825 +113
==========================================
+ Hits 4257 4359 +102
- Misses 3082 3091 +9
- Partials 373 375 +2
... and 2 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
Implemented syntax for JSON reference in variables to dynamically expand values from JSON variables.
Example:
If
SUB_RESULT
contains:Then the expanded value of
${SUB_RESULT.outputs.finalValue}
will besuccess
. It works for any environment variables and params as well.