Julien Dephix
Julien Dephix
Hey, I might be late to the game but I have a similar page as you do. I have several Target components which each have a TypeAhead component. I let...
One of those commits could break a build. If PHPCI skipped to the last commit it would report a broken build and you would think the last commit was the...
I hear you. I've actually tweaked PHPCI for our needs and added a branch whitelist so it only builds `master` and our `SprintN` branches. Saves resources and build time when...
I just made a Q&D tweak to `PHPCI/Controller/WebhookController.php`'s `bitbucketWebhook` method: ``` foreach ($payload['push']['changes'] as $commit) { try { $email = $commit['new']['target']['author']['raw']; $email = substr($email, 0, strpos($email, '>')); $email = substr($email,...
Make sure you have mod rewrite enabled and that Apache points to public folder. Sent from my phone so I couldn't check against my setup
Same answer as your previous question. The idea of CI is to find when something breaks. If you keep skipping running builds when new commits are pushed then you'll end...
You probably do not have write privs to phpci database. Make sure user phpci can CRUD tables and you should be good to go.
Hi Fran. Thanks for resurrecting this thread. I’ll see if I can find time to work on this.
Hi. I am experiencing the same problem. I tried to change `Translation Root Path` to `translations` but that didn't change anything.  Thanks!
Hi. I was about to get cracking on this and saw your PR @marcelthole :+1: It would be nice if you could transform the following: ```php $params = ['name' =>...