Brad Rydzewski
Brad Rydzewski
@gtaylor yes, planning to use global webhooks. I am hoping this will be supported in the initial implementation, but we could fallback to per-repository webhooks to push out an mvp...
Are there docs for cloning a pull request?
We had someone investigate this about 6 months ago. The details are a bit fuzzy, but I thought the issue was that you need to clone from the fork and...
@lazy404 working on pull request support for Bitbucket and GitLab. Would you be willing to weigh-in on the proposed design: #1066
I'm not aware of anyone working on this at the moment. The issue has been labeled as help wanted, which means it is not something I'm planning on implementing, but...
I just merged https://github.com/drone/drone/pull/1864 which stores the remote repository for the pull request as well as a refspec value. With these values we can do the following: ``` sh #...
Note that this issue is frozen until Bitbucket solves the following issue: https://bitbucket.org/site/master/issues/5814/repository-refs-for-pull-requests They recently (in 2018) posted that they are working on this issue, and will rollout a series...
Hooks are not the problem. Without pull request refs we would have to change our clone process, and even with this change there is no guarantee cloning pull requests from...
@dmytro-tolkodubov it is possible, however, the result is that every Bitbucket pull request would fail by default. Drone would be perceived as broken and the resulting support burden would probably...
I was thinking something like this: ```diff +r.ParseForm() +for key, value := range append(r.URL.Query(), r.Form...) { -for key, value := range r.URL.Query() { ```