-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
fix(ui): Fix editor. Fixes #5613 Fixes #5617 #5620
Conversation
Signed-off-by: Alex Collins <alex_collins@intuit.com>
Codecov Report
@@ Coverage Diff @@
## master #5620 +/- ##
==========================================
+ Coverage 47.05% 47.10% +0.05%
==========================================
Files 240 240
Lines 15030 15034 +4
==========================================
+ Hits 7072 7082 +10
+ Misses 7054 7052 -2
+ Partials 904 900 -4
Continue to review full report at Codecov.
|
Signed-off-by: Alex Collins <alex_collins@intuit.com>
Signed-off-by: Alex Collins <alex_collins@intuit.com>
- - name: process-artifact | ||
template: process-message | ||
withParam: "{{steps.generate-artifact.outputs.result}}" | ||
- - name: list-log-files |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@simster7 I wanted an example for CNCF webinar and could not use the example.
.github/workflows/ci-build.yaml
Outdated
@@ -97,6 +97,7 @@ jobs: | |||
echo "- name: fake_token_user" >> ~/.kube/config | |||
echo " user:" >> ~/.kube/config | |||
echo " token: xxxxxx" >> ~/.kube/config | |||
until kubectl cluster-info ; do sleep 10s ; done |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hopefully fix some flakey builds
// we ONLY want to change the text, if the normalized version has changed, this prevents white-space changes | ||
// from resulting in a significant change | ||
if (text !== stringify(parse(editor.current.editor.getValue()), lang)) { | ||
editor.current.editor.setValue(text); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Fixes #5613
Fixes #5617