Miguel Jimenez

Results 18 comments of Miguel Jimenez

In case anyone is still looking for this, here is a complete example: ```yaml steps: - name: "gcr.io/cloud-builders/docker" entrypoint: "bash" args: [ "-c", "_TMP_VAR=`echo $BRANCH_NAME | sed -r 's,/,-,g'`; docker...

@groudjulien I'm not using Cloud Build anymore, so I don't know if it still works. However, the [documentation on substitutions](https://cloud.google.com/cloud-build/docs/configuring-builds/substitute-variable-values) seems to be the same on that topic. Are you...

@groudjulien I think the problem is the name of your variable. You're defining `_BRANCH_FINAL_NAME` in your substitutions but then you use `_NEW_BRANCH_NAME`.

Wow, thanks for all those pointers. I'll work on it as soon as I can and will let you know how it goes.

I've been using this code in the console, in case anyone finds it useful: Descending order: ```javascript $('.quality-assessment').append($('.panel-quality-assessment') .sort(function(a, b) { return $(b).find('.score').text() - $(a).find('.score').text(); })); ``` Ascending order: ```javascript...

Awesome, thanks @vitorfs!

@tvondra Could you please describe what would the tdigest table look like? I don't understand how I can store a tdigest in the database if I compute it in my...

Sounds interesting to me! However, I don't know if remembering how many panels were opened before refreshing is worth adding a feature; maybe you can propose a way to remember...

Great! I'm looking forward to see the result :+1: