David Goaté
David Goaté
@juank11memphis I have given up on this for now. The closest I got was creating a custom image using `FROM cypress/base:10` where I created a user with the same GID...
@bahmutov The issue I see when running directly with the `cypress/base:10` image and a Jenkinsfile like: ```groovy pipeline { agent { // this image provides everything needed to run Cypress...
@bahmutov agreed, I think you're probably right. I haven't come across any though and I would imagine that it will impact anyone who wants to use Cypress Docker on Jenkins...
@ndeloof thanks for the input. I also tried this: Dockerfile: ```Dockerfile FROM cypress/base:10 RUN groupadd --gid 502 jenkins && \ useradd --shell /bin/bash --gid 502 --uid 501 jenkins USER jenkins...
@ndeloof yes i wholly agree, I was setting them to test if it worked. It seems like one dynamic solution to this would be [this approach](https://denibertovic.com/posts/handling-permissions-with-docker-volumes/) using `gosu` but it...
@donatasRemeika when you say: > as they obviously don't have proper user config Can you elaborate on this at all? We opt to run jenkins as a non root users...
@abinoda > the clock starts ticking when a PR is opened do you know internally in GitHub whether the PR is considered "open" in the draft state. I would imagine...
@abinoda we look at a few things including; * Review turnaround success rate and chart, we then look at the PR's that exceeded target - especially interested in whether many...
@abinoda I hadn't thought of that. I think that works well for getting the high level aggregate scores. One small usability enhancement though, using review turnaround as an example, if...
@abinoda copied from #112 as requested: > I am actually a bit unsure myself whether this is a good idea, I can imagine many pros and cons for this -...