Dalibor Karlović

Results 220 comments of Dalibor Karlović

The issue here actually seems to be me using SSH based repo URLs, so the action gets into this: ``` The authenticity of host 'github.com (140.82.121.3)' can't be established. RSA...

> why haven't we introduce a non-root user? Not sure. > Btw, the user could be called "phpqa". :+1: I'm working on this patch as I write this. The important...

Oh right, the entrypoint is being run by the user you pass to `docker run`, meaning it cannot add the user at runtime since it's not root. :thinking: If we...

Looking into adding a SUID root script to do it, should be pretty safe since it's in the container and doing one thing specifically.

This looks like it's mostly finished or am I missing something?

Note, my first reason for asking about this was to allow me to load ORM and ODM fixtures at the same time (ODM references ORM). Looking at `hautelook:fixtures:load`, it explicitly...

BTW the ODM documents are already properly constructed by `hautelook:fixtures:load`, they're just not flushed, which is quite unfortunate.

Here's a quick hack to illustrate the required points, continuation from our Slack conversation: https://github.com/hautelook/AliceBundle/pull/440 For the feature to work, the new `DoctrineLoader` will need to have manager registries injected....

@theofidry this looks good to me. :+1: I started reading the commits one by one and got confused where you undid what the first commit did, you should probably squash...

I don't use that action since it's just thick CI magic which makes it harder to be reproducible locally. I prefer to do it with [a prebuilt Docker image](https://github.com/jakzal/phpqa), [a...